C++ 播放音频文件

    本篇文章利用“MCI API”来实现对音频文件的播放,只写到本人用到的最为简单的播放功能,这篇文章有对其详细的介绍,如果有需要可以去看看。

    OK,下面直接上代码吧,本人用的是VS2013直接建的C++空白控制台程序,代码如下:

#include "stdio.h"
#include 
#pragma comment (lib, "winmm.lib")  

void main()
{
	mciSendString(L"open 警告音.wav alias aa", NULL, 0, NULL);//alias后面为设备名称
	mciSendString(L"play aa wait", NULL, 0, NULL);//wait表示播放完毕之后才返回,最好加上去
	mciSendString(L"close aa", NULL, 0, NULL);
}

    工程下载:地址





你可能感兴趣的:(C++,mfc,音频处理)