ios – AVPlayer / AVPlayerItem的缓冲区大小

前端之家收集整理的这篇文章主要介绍了ios – AVPlayer / AVPlayerItem的缓冲区大小前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在为iOS创建流媒体广播应用程序,我想调整AVPlayer和AVPlayerItem的属性,以便在有损连接条件下让我更可靠地播放.
我想增加buffersize.

我能找到的唯一答案是here

无论如何要实现这一目标而不去OpenAL?

解决方法

在您的观察者方法添加以下代码.
NSArray *timeRanges = (NSArray *)[change objectForKey:NSKeyValueChangeNewKey];
CMTimeRange timerange = [timeRanges[0] CMTimeRangeValue];

CGFloat smartValue = CMTimeGetSeconds(CMTimeAdd(timerange.start,timerange.duration));
CGFloat duration   = CMTimeGetSeconds(self.player.currentTime);
if(smartValue - duration > 5 || smartValue == duration) {
      // Change the value "5" to your needed secs,its the buffer size.
      // Play the video
}

我已经实施并且运作良好.

参考自:https://stackoverflow.com/a/7730708/2315453

原文链接:https://www.f2er.com/iOS/334579.html

猜你在找的iOS相关文章