使用 AVPlayer 擦除敏感电影

发布于 2024-12-10 15:56:04 字数 248 浏览 0 评论 0原文

我正在构建一个需要高度敏感的擦除功能的电影播放器​​。我的目标是,如果用户选择最高灵敏度,则允许他逐帧擦洗。

目前我正在使用以下方法:

[playereekToTime:CMTimeMakeWithSeconds(duration*(Float64) slider.value, 600)];

但我距离我希望达到的灵敏度还很远。有人可以建议或指出更好的方法甚至框架来完成此功能。

提前致谢。

I'm building a movie player which requires a highly sensitive scrubbing feature. My aim is to allow the user to scrub frame by frame if he selects the highest sensitivity.

Currently I'm using the method:

[player seekToTime:CMTimeMakeWithSeconds(duration*(Float64) slider.value, 600)];

but I'm far from the sensitivity I wish to achieve. Can someone advice or point out better method or even frameworks to get this feature done.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

羁〃客ぐ 2024-12-17 15:56:04

解决这个问题。不知怎的,它从我的眼睛里溜走了,但有一个方法可以做到这一点:

[player seekToTime:CMTimeMakeWithSeconds(duration*(Float64)value  , 600) 
      toleranceBefore:kCMTimeZero 
       toleranceAfter:kCMTimeZero];

将toleranceBefore和toleranceAfter设置为零,这意味着它将准确地达到您所在的点搜索,但解码帧需要更多时间。

Solve this problem. Somehow it slipped from my eyes but there is a method that does exactly that:

[player seekToTime:CMTimeMakeWithSeconds(duration*(Float64)value  , 600) 
      toleranceBefore:kCMTimeZero 
       toleranceAfter:kCMTimeZero];

The toleranceBefore and the toleranceAfter are set to zero which means it will get exactly to the point you are searching but it will take more time to decode the frame.

葬花如无物 2024-12-17 15:56:04

这里只想提一下 HLS 的局限性。即使您指定容差 0,也不可能在任何 ts 段的中间进行查找。一旦您将手指从滑块上抬起寻找位置,播放器就会从最近的 TS 片段开始播放视频。

Just want to mention a limitation of HLS here. Even though you specify the tolerance 0, it is not possible to seek in the middle of any ts segment. Once you lift your finger from scrubber to seek a position, the player will start playing the video from the nearest TS segment.

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