注册 登录
编程论坛 VC++/MFC

音频播放问题~

laznrbfe 发布于 2011-06-07 18:52, 492 次点击
#include <windows.h>
#include <vfw.h>

int main(int argc, char* argv[])
{
 if (argc>1) {
    HWND MyPlayer = MCIWndCreate(NULL,GetModuleHandle(NULL), 0, argv[1]);
    MCIWndPlay(MyPlayer);
           Sleep(50000);
 }
 return 0;
}

连接出错了·
5 回复
#2
laznrbfe2011-06-07 18:55
怎么改?
#3
laznrbfe2011-06-07 19:02
我的QQ是:379504075.答案:爱。各位给力点哈~
#4
laznrbfe2011-06-07 20:19
没有人回答吗?
#5
hellovfp2011-06-08 12:44
MCIWndPlay()需要什么库?你不给当然链结出错了。
#6
laznrbfe2011-06-14 08:49
回复 楼主 laznrbfe
#include<iostream.h>
#include <Windows.h>
#pragma comment(lib, "winmm.lib")

int main()
{
    cout<<"胡歌 - 六月的雨 - 仙剑奇侠传"<<endl;
    PlaySoundA("六月的雨.wav", NULL ,SND_ASYNC | SND_LOOP);
    Sleep(60*1000);
    cout<<"over!"<<endl;
    return 0;
}

//////////////////////////////

///并在对应目录下存放wav格式的六月的雨,即有“六月的雨.wav”
1