Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嘿,我想播放声音。我发出 ac 命令并播放声音,然后用户按下一个键,比如说“h”,然后声音停止 5 秒,5 秒后返回。我可以使用什么 c 命令来执行此操作?我认为 mci 发送字符串可能有效,但我不确定。Play Sound 是我的首选,但它没有此功能。
任何代码建议?
我假设您使用的是 Windows
waveOutPause()
Sleep(5000);
waveOutRestart()
另请参阅:waveOutPause MSDN 文档