MPMoviePlayerController 错误或功能:将initialPlaybackTime 设置为 t 秒会隐藏时间滑块直至 t

发布于 2024-12-05 21:01:19 字数 557 浏览 0 评论 0原文

假设一部电影时长 10 分钟,我将 initialPlaybackTime 设置为 1 分钟标记,如下所示:

NSString *urlStr = @"http://<ip>/vod_movie.m3u8"; // 10 minute long video
MPMoviePlayerController* playerController = [[MPMoviePlayerController alloc]
                           initWithContentURL:[NSURL URLWithString:urlStr]] ];
[playerController prepareToPlay];
[playerController setInitialPlaybackTime:60]; // Want to play from the 1 minute mark

这会导致视频从 1 分钟标记开始播放,但时间滑块隐藏了该部分早于 1 分钟,因此您无法向后查找。

Say a movie is 10 min long and I am setting initialPlaybackTime to the 1 minute mark, like thus:

NSString *urlStr = @"http://<ip>/vod_movie.m3u8"; // 10 minute long video
MPMoviePlayerController* playerController = [[MPMoviePlayerController alloc]
                           initWithContentURL:[NSURL URLWithString:urlStr]] ];
[playerController prepareToPlay];
[playerController setInitialPlaybackTime:60]; // Want to play from the 1 minute mark

This results in the video starting to play from the 1 minute mark, but the time-slider hides the part before 1 min, so there is no way you can seek backwards.

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

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

发布评论

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

评论(1

难以启齿的温柔 2024-12-12 21:01:19

这是 initialPlaybackTime 的预期行为。我不知道针对您想要执行的操作有任何推荐的解决方案,但您可以尝试将initialPlaybackTime设置为-1,并在视频开始播放后使用setCurrentPlaybackTime滚动到电影中的位置您希望播放开始于。

This is the intended behavior of initialPlaybackTime. I don't know of any recommended solution for what you are trying to do, but you could try setting initialPlaybackTime to -1 and after the video starts playing use setCurrentPlaybackTime to scroll to the position in the movie that you want the playback to start at.

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