在 MPMoviePlayerController 中缓存渐进式下载内容
我有一个在 iphone (sdk 4) 中实现的音乐播放器,它可以与 Mp3 流(即时转码)或原始渐进式下载一起使用。
无论如何,是否可以缓存渐进式下载的内容(我不直接控制),以便它不会重新下载整个内容?
或者是否有全局缓存设置可以控制? (顺便说一句,我使用 ASIHTTP API 来联系我的 HTTP 服务器并访问允许缓存的数据)。
提前致谢。
I have a music player implemented in iphone (sdk 4) and it works both with streaming of Mp3 (Transcoded on the fly) or raw progressive download.
Is there anyway to make the progressivedownloaded content (which I dont directly control) to be cached so it doesn redownload the whole content?
Or Is there a global cache setting to control? (On a side note, I used ASIHTTP APIs to contact my HTTP server and access data that does allow caching).
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 NSURLConnection 保存文件并播放。
示例:
下面是播放代码
You can use NSURLConnection to save the file and play it back.
Example:
Below is the code for playback