Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经Custom Video Player在我的应用程序中实现了用于播放在线视频的功能,现在我想实现视频缓冲功能,我正在寻找它但没有得到正确的解决方案。
Custom Video Player
所以任何人都可以指导我。
查看 AVPlayer + AVPlayerLayer 类。
使用视频的 URL 加载 AVPlayer。
在调用播放方法之前给它一些时间来缓冲视频,可能是这样的:
[self performSelector:@selector(play:) withObject:nil afterDelay:10.0];
我认为MPMoviePlayerController默认支持流媒体功能。你为什么不试试呢。