如何在 c++ 中播放 .WAV 声音
如何在简单的 C++ 控制台应用程序中播放 .WAV 声音?我在 windows xp 上使用代码块。我需要最简单有效的方法。提前致谢:D 顺便说一句:我可以同时播放两种声音吗?比如背景音乐和音效?
How can I play a .WAV sound in a simple c++ console aplication? I am using code blocks on windows xp.I need the most simple and efficient way.Thanks in advance :D
Btw:CAn i play 2 sounds at the same time?Like background music and sound effects?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将简单直接媒体层 (SDL) 库与 SDL_Mixer 库一起使用。 http://content.gpwiki.org/index.php/SDL_mixer:教程:Playing_a_WAV_Sound_File
这是一个很棒的教程:http://lazyfoo.net/SDL_tutorials/lesson11/index.php
You could use the Simple Direct Media Layer (SDL) library along with SDL_Mixer library. http://content.gpwiki.org/index.php/SDL_mixer:Tutorials:Playing_a_WAV_Sound_File
Here's an excellent tutorial: http://lazyfoo.net/SDL_tutorials/lesson11/index.php
您可以使用 Audiere 或 Mikmod 如果您在播放音乐或此类声音后。如果您追求更多面向游戏或实时行为,您可能会更好地使用 SDL,它提供回调。
You could use Audiere or Mikmod if you are after playing music or such sounds. If you are after more game oriented, or realtime behavior, you might be better off with SDL, which offers callbacks.
您可以只使用 PlaySound API - 您表明您有一个 .WAV 文件,而 PlaySound 是为播放 .Wav 文件量身定制的。
You could just use the PlaySound API - you indicated that you have a .WAV file, and PlaySound is tailor made for playing .Wav files.