在http直播上寻找AVPlayer(M3U8)

时间:2013-06-21 11:24:03

标签: ios avplayer http-live-streaming m3u8

如果你一次又一次地寻找,你将通过AVPlayer的“currentTime”方法得到错误的当前播放时间。

如果不寻求,AVPlayer的“currentTime”就可以了。但是,我们的用户经常会寻求,我们将失去正确的当前时间。不幸的是,当前时间对我们的业务非常重要。我已经在stackoverflow上研究了与问题相关的每个页面。

没有答案。无可能的解决方案不知道。

Stackoverflow是一个非常好的网站,供程序员讨论难题。我仍然对你抱有希望,天才们。


AVPlayerItem *thePlayerItem = [self.player currentItem];
if (thePlayerItem.status == AVPlayerItemStatusReadyToPlay)
{

        CMTime nowTime = self.player.currentTime;
}

1 个答案:

答案 0 :(得分:0)

Apple告诉我,问题与m3u8细分有关。错误的m3u8段或错误的m3u8文件是问题的资源。