我们假设客户端的带宽正在增加.因此客户端将切换到更高的比特率段.
AVPlayer可以检测到此开关吗?
谢谢.
解决方法 我最近遇到过类似的问题.解决方案感觉有点Hacky,但它在我看到的情况下起作用.首先,我为新的Access Log通知设置了一个观察者:[[NSNotificationCenter defaultCenter] addobserver:self selector:@selector(handleAVPlayerAccess:) name:AVPlayerItemNewAccessLogEntryNotification object:nil];
哪个叫这个功能.它可能可以优化,但这是基本的想法:
- (voID)handleAVPlayerAccess:(NSNotification *)notif { AVPlayerItemAccessLog *accessLog = [((AVPlayerItem *)notif.object) accessLog]; AVPlayerItemAccessLogEvent *lastEvent = accessLog.events.lastObject; float lastEventNumber = lastEvent.indicatedBitrate; if (lastEventNumber != self.lastBitRate) { //Here is where you can increment a variable to keep track of the number of times you switch your bit rate. NSLog(@"Switch indicatedBitrate from: %f to: %f",self.lastBitRate,lastEventNumber); self.lastBitRate = lastEventNumber; }}
每次访问日志都有新条目时,它会检查最近一个条目的最后指示比特率(播放器项目的访问日志中的lastObject).它将此指示的比特率与存储来自最后一次更改的比特率的属性进行比较.
总结以上是内存溢出为你收集整理的ios – 检测AvPlayer切换比特率的时间全部内容,希望文章能够帮你解决ios – 检测AvPlayer切换比特率的时间所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)