在 AVQueuePlayer 中寻找时间

发布于 2024-11-04 16:06:53 字数 227 浏览 0 评论 0原文

任何人都可以帮我在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

何处潇湘 2024-11-11 16:06:53

seekToTime: 的文档中对此进行了说明:

所寻求的时间可能与为提高效率而指定的时间不同。有关精确查找的示例,请参阅 seekToTime:toleranceBefore:toleranceAfter:

因此,请尝试使用 seekToTime:toleranceBefore:toleranceAfter: 来代替,指定低容差或零容差。在创建您可能使用的任何 AVURLAssets 时,您可能还需要为 AVURLAssetPreferPreciseDurationAndTimingKey 指定 true。

This is stated in the documentation for seekToTime::

The time seeked to may differ from the specified time for efficiency. For sample accurate seeking see seekToTime:toleranceBefore:toleranceAfter:.

So try using seekToTime:toleranceBefore:toleranceAfter: instead, specifying a low or zero tolerance. You may also want to specify true for AVURLAssetPreferPreciseDurationAndTimingKey when creating any AVURLAssets you may be using.

最冷一天 2024-11-11 16:06:53

更新...我最终进行了黑客攻击,但对结果不是特别满意 - 电影之间的快速穿透黑色可能会或可能不会显示,因为我很糟糕并且没有询问负载状态等可能会让很多事情变得混乱。

但是对于直接循环 AVQueuePlayer assetItem 来说,可以设置一个 borderTime 观察者并使用它来倒回 assetItem。我的东西只有几秒钟长,所以eekToTime 非常无缝,我不知道它会在更长的资产上进行搜索。 在 AVQueuePlayer 中循环 assetItem< /a>


Update... I ended up doing hackery and not being especially pleased with the results--the snap-through-black between movies may or may not show, and because I was bad and didn't inquire as to the load status etc it's possible to get many things confused.

But for straight looping an AVQueuePlayer assetItem it works to set a boundaryTime observer and use that to rewind the assetItem. My stuff is only a few seconds long so the seekToTime is pretty seamless, I don't know what it'll do seeking on a longer asset. looping an assetItem in AVQueuePlayer

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文