在 AVQueuePlayer 中寻找时间
任何人都可以帮我在AVQueuePlayer
中寻找特定时间吗?
我使用这个控制器在 iPhone 中播放视频,因为我需要同时播放两个视频。 但我的问题是在视频中导航并跳转到特定时间,我无法做到这一点。
我知道该方法,即 [controllereekToTime:(CMTime)]
但它并没有在视频的确切位置移动视频。
有谁知道解决办法吗?
Can any one help me to seek at particular time in AVQueuePlayer
?
I have use this controller to play video in iPhone because i need to play two video at the same time.
But my problem is to navigate in video and jump to at particular time, I am not able to do that.
I Know the method the That is [controller seekToTime:(CMTime)]
But it is not moving the video at exact position of the video.
Does any one know the solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
seekToTime:
的文档中对此进行了说明:因此,请尝试使用
seekToTime:toleranceBefore:toleranceAfter:
来代替,指定低容差或零容差。在创建您可能使用的任何 AVURLAssets 时,您可能还需要为 AVURLAssetPreferPreciseDurationAndTimingKey 指定 true。This is stated in the documentation for
seekToTime:
:So try using
seekToTime:toleranceBefore:toleranceAfter:
instead, specifying a low or zero tolerance. You may also want to specify true forAVURLAssetPreferPreciseDurationAndTimingKey
when creating any AVURLAssets you may be using.