我使用 AVPlayer 的-(id)addPeriodicTimeObserverForInterval: queue: usingBlock:
方法将 UI 更新为播放进度。但是,我的进度条永远不会结束。
CMTime duration = self.player.currentItem.asset.duration;
float totalSeconds = (Float64)(duration.value * 1000) / (Float64)(duration.timescale);
NSLog(@"duration: %.2f", totalSeconds);
__weak __typeof(self) welf = self;
_mTimeObserver = [self.player addPeriodicTimeObserverForInterval:CMTimeMake(10, 1000)
queue:NULL // main queue
usingBlock:^(CMTime time) {
float totalSeconds = (Float64)(time.value * 1000) / (Float64)(time.timescale);
NSLog(@"progress %f", totalSeconds);
}];
日志:
App[2373:792179] duration: 3968.00
点击播放按钮
App[2373:792179] progress 0011.176
App[2373:792179] progress 0021.175
...
App[2373:792179] progress 3701.319
App[2373:792179] progress 3704.000
我不应该期望最后一个数字3968.0
吗?
音频从服务器流式传输。
编辑
无论实际持续时间长度是多少,最后进度编号始终是。 duration - 0.264 sec
这太奇怪了,我希望我们可以在 SO 上使用表情符号。