3

我使用 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 上使用表情符号。

4

2 回答 2

0

文档明确指出:

只要您希望播放器调用时间观察器,就必须保留返回的值。

于 2016-06-22T23:56:56.480 回答
0

好问题。尝试使用CMTimeGetSeconds(time)而不是自己计算总秒数。

此外,尝试使用CMTimeMakeWithSeconds(10.0, NSEC_PER_SEC)为周期性时间观察器创建时间。

这篇文章帮助我理解了 CMTime 的谜团:https ://warrenmoore.net/understanding-cmtime

于 2016-06-22T19:20:40.050 回答