播放简短的单词声音,以及声音文件格式?
我有一个包含数百个短音(主要是单词)的应用程序。我用:
AudioServicesPlaySystemSound(_soundID);
来玩它们。
问题是 AudioServices 与 MP3 格式文件不兼容,因此我的文件非常大,当我有数百个文件时,我的应用程序大小就很大。
有没有更好的方法来播放压缩格式的短声音?任何建议表示赞赏。
I have an app with hundreds of short sounds (words mainly). I use:
AudioServicesPlaySystemSound(_soundID);
to play them.
The problem is that AudioServices isn't compatible with MP3-format files, so my files are pretty big and when I have hundreds of them, my app size is huge.
Is there a better way to play short sounds in a compressed format? Any advice is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 mac/iPhone,苹果建议使用 .aiff 格式来播放短声音。
http://en.wikipedia.org/wiki/Audio_Interchange_File_Format 和 http://images.apple.com/support/itunes_u/docs/iTunes_U_Creating_Content.pdf
For mac/iPhone apple recommends to use .aiff format for playing short sounds.
http://en.wikipedia.org/wiki/Audio_Interchange_File_Format and http://images.apple.com/support/itunes_u/docs/iTunes_U_Creating_Content.pdf