質問

埋め込まれたLinux用のQTアプリでMP3ファイルの再生をサポートするサポートを追加したいと思います。

QTでフォノンを使用することはできません。 .proファイルにqt += phononを追加した後、コンピレーション中に次のエラーが発生します。 libphonon.so: `qwidget :: x11event(_xevent*)への未定義の参照

/usr/lib/gcc/i486-linux-gnu/4.4.1/../../../..//lib/libphonon.so: `qdatastream :: qdatastream(qbytearray*、int)への未定義の参照

collect2:LDは1つの出口ステータスを返しました

だから今、私はMP3ファイルをデコードするためにMPG123 LIBを使用することを考えています。

QTのライブラリを統合するのに役立ちます。 QTで純粋なC ++ライブラリを使用したことがないので、それを統合する方法についてあまり考えていません。

役に立ちましたか?

解決

ねえすべて!最後に私はそれを理解しました!!

int MP3Player::Init(const char *pFileName)

{

    mpg123_init();

    m_mpgHandle = mpg123_new(0, 0);
    if(mpg123_open(m_mpgHandle, pFileName) != MPG123_OK)
    {
        qFatal("Cannot open %s: %s", pFileName, mpg123_strerror(m_mpgHandle));
        return 0;
    }
}

int MP3Player::Play()

{

    unsigned char *audio;
    int mc;
    size_t bytes;
    qWarning("play_frame");


    static unsigned char* arr = 0;

    /* The first call will not decode anything but return MPG123_NEW_FORMAT! */

    mc = mpg123_decode_frame(m_mpgHandle, &m_framenum, &audio, &bytes);

    if(bytes)
    {

        /* Normal flushing of data, includes buffer decoding. */

        /*This function is my already implemented audio class which uses ALSA to output decoded audio to Sound Card*/
        if (m_audioPlayer.Play(arr,bytes) < (int)bytes) 
        {
            qFatal("Deep trouble! Cannot flush to my output anymore!");
        }

    }
    /* Special actions and errors. */
    if(mc != MPG123_OK)
    {
        if(mc == MPG123_ERR)
        {
            qFatal("...in decoding next frame: %s", mpg123_strerror(m_mpgHandle));
            return CSoundDecoder::EOFStream;

        }
        if(mc == MPG123_DONE)
        {
            return CSoundDecoder::EOFStream;
        }
        if(mc == MPG123_NO_SPACE)
        {
            qFatal("I have not enough output space? I didn't plan for this.");
            return CSoundDecoder::EOFStream;
        }
        if(mc == MPG123_NEW_FORMAT)
        {
            long iFrameRate;
            int encoding;
            mpg123_getformat(m_mpgHandle, &iFrameRate, &m_iChannels, &encoding);

            m_iBytesPerChannel = mpg123_encsize(encoding);

            if (m_iBytesPerChannel == 0)
                qFatal("bytes per channel is 0 !!");

            m_audioPlayer.Init(m_iChannels , iFrameRate , m_iBytesPerChannel);

        }
    }
}

他のヒント

MPG123をQTプロジェクトで作業させるために、次の手順を試してみてください。

1. MPG123をダウンロードしてインストールしたフォルダーから抽出したフォルダー(eg /home/mpg123-1.13.0/)run ./configure、そして「sudo make install」

2.エラーがない場合、この行を *.proファイルに配置します

LIBS += /usr/local/lib/libmpg123.so

3.以下のコードはあなたのために正常に実行されるはずです:

#include "mpg123.h"
#include <QDebug>

void MainWindow::on_pushButton_2_clicked()
{
    const char **decoders = mpg123_decoders();
    while (*decoders != NULL)
    {
        qDebug() << *decoders;
        decoders++;
    }
}

または、システムコールを使用してMPG123に電話することもできます。

system("mpg123 /home/test.mp3"); 

これが役立つことを願っています

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top