从内存中播放 wav/mp3
我从文件中播放 mp3/wav 以创建推送效果。然而,在基于 Atom CPU 的平板电脑上,当我触摸按钮时会出现延迟。
我将尝试从内存而不是文件系统播放 wav/mp3。任何人都可以提供代码片段或线索吗?
System.Media.SoundPlayer player = new System.Media.SoundPlayer();
player.SoundLocation = System.Windows.Forms.Application.StartupPath + "\\beep-7.wav";
player.Play();
I play mp3/wav from file to create a push effect. However on an Atom CPU based tablet PC, there is a delay when I touch the button.
I'll try to play wav/mp3 from memory instead of file system. Can anyone give a code snippet or a clue?
System.Media.SoundPlayer player = new System.Media.SoundPlayer();
player.SoundLocation = System.Windows.Forms.Application.StartupPath + "\\beep-7.wav";
player.Play();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的东西吗?
Something like this?