在 iPhone 应用程序中播放 .mp3 的最佳方式是什么?
可能的重复:
Iphone sdk 支持通过网络播放 mp3 文件
我需要在我的 iPhone 应用程序中播放 .mp3。 .mp3 位于服务器上,我只有它的 URL。如果能在 UIWebView 中播放就好了。无论如何,我想留在我的应用程序中并进行流式传输。
Possible Duplicate:
Iphone sdk support for playing mp3 files over the network
I need to play a .mp3 in my iPhone app. The .mp3 is on a server, and I just have the URL of it. It would be nice if it could be played in a UIWebView. In any case I want to stay in my app, and stream it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是使用 MPMoviePlayerController。尽管有这个名字,但它完全支持纯音频流。
The easiest way is to use
MPMoviePlayerController
. Despite the name, it fully supports audio-only streaming.奥兹说的话。
顺便说一句,这是一篇非常好的文章,概述了 iDevice 媒体 API 的历史:
http://cocoawithlove.com/2011/03/history-of-ios-media-apis-iphone-os-20.html
它会给你一些想法可用选项。
What omz said.
Btw, this is a very nice article which gives an overview of the history of iDevice media APIs:
http://cocoawithlove.com/2011/03/history-of-ios-media-apis-iphone-os-20.html
It will give you some idea of the options available.