确定 MPMovieController 比特率
有没有办法确定 MPMovieController 正在播放的流的比特率? 我正在 iOS 上使用 Objective-C 进行编程
Is there a way to determine the bit-rate of the stream an MPMovieController is playing?
I am programming in objective-c on iOS
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(2)
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
可以从event中获取指示的码率,这是按照m3u8的码流的码率。为了计算实际比特率,我将 event.numberOfBytesTransferred / event.durationWatched 除以 8。
You can get the indicated bit rate from event, which is the bit rate of the stream according to the m3u8. To calculate the actual bit rate I divide event.numberOfBytesTransferred / event.durationWatched and multiply by 8.