0

我的代码

    char MusicLoc [50][200];
    char Music [50][50];
    int MusicBox(int IndexMusic)
    {
    std::string rawloc = ((std::string)"open \""+MusicLoc[IndexMusic]+Music[IndexMusic]+"\"type mpegvideo alias "+Music[IndexMusic]);`
    mciSendString(rawloc.c_str(), NULL, 0, 0); 
    mciSendString(((std::string)"play "+Music[IndexMusic]).c_str(), NULL, 0, 0);
    return 0;
    }

MusicLoc 包含路径,Music 包含文件名,所以 MusicLoc[1]+Music[1] 将是 C:\etc\etc\etc\audio.mp3 ,起初它工作正常,但后来它随机停止工作,我试过了一切都不起作用,所以我猜不推荐使用 mciSendString,所以有人知道一个好的轻量级音频库吗?

编辑:第一个 mciSendString 返回 266,第二个返回 275,如果它有任何用处,但我真的没有找到关于它们的好的文档。

GetLastError 也表示没有错误...

4

1 回答 1

0

如果没有错误,mciSendString 的返回值应该为零。您的问题表明您遇到了错误!

要很好地解码错误,请使用 mciGetErrorString

像这样的东西(从我的代码中提取,所以你必须调整变量名等)

    wchar_t cmd[250];
    swprintf(cmd,249,L"open %s alias an1",fname1.c_str());
    err = mciSendString(cmd, 0, 0, 0 );
    if( err ) throw err;

...

catch ( unsigned int& err ) {
    wprintf(L"Playing %s %s %s\n",fname1.c_str(),fname2.c_str(),fname3.c_str());
    wchar_t msg[128];
    mciGetErrorString( err, msg,128 );
    wprintf(L"%s\n",msg);
于 2012-10-02T16:07:50.090 回答