如何构建音频文件流 iPhone 应用程序?
我需要一些关于如何为多个音频文件制作音频流应用程序的指导,以便应用程序用户可以从列表中进行选择并收听该项目。您知道任何好的教程吗?或者我可以从哪里学习如何执行此操作由我自己。我熟悉它的外观概念,我需要一些关于如何暂停和恢复,如何转到下一个和上一个的内容,是否有一些课程可以帮助我做到这一点。有人可以帮助我吗?
I need some guidance on how to make a audio stream app for multiple audio files, so the app user can choose from the list and listen to the item.Do you know any good tutorials, or place from where i can learn how to do this by my self. I'm familiar with the concept on how it wood look like, i need something on how to pause and resume, how to go to next and previous are there some classes that can help me do this. Can someon help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以要求用户运行 iOS 4.1+,请考虑 AVQueuePlayer。它可以帮助您流式传输项目的顺序播放列表。 AVPlayer 是另一种选择,它只需要 iOS 4.0+,但它一次只能处理一个项目,因此您必须编写自己的代码来管理播放列表。
AV Foundation 编程指南很好地解释了如何使用这些类。
Look into AVQueuePlayer if you can require your users to run iOS 4.1+. It can help you stream a sequential playlist of items. AVPlayer is another option, which only requires iOS 4.0+, but it can only handle one item at a time, so you'd have to write your own code to manage the playlist.
The AV Foundation Programming Guide does a pretty good job of explaining how to use these classes.