MPMoviePlayerController +电影在开始缓冲数据后暂停

发布于 2024-09-08 00:37:29 字数 277 浏览 2 评论 0原文

在我的应用程序中,我使用 MPMoviePlayerController 从 URL 播放电影。最初 2-4 秒它播放得很好,但之后每次缓冲它都会暂停电影并且我需要手动播放......

shouldAutoplay = YES; is set 

我已经使用 loadstate (iDemoPlayer.loadState) 进行了调试显示值 5(没有关系)

任何人都可以帮助我吗?

谢谢,

萨加尔

In my application I am using MPMoviePlayerController to play movie from URL. initially for 2-4 secs it play well , but after that for each buffering it pauses the movie and Manually I need to play though ....

shouldAutoplay = YES; is set 

I have debugged with loadstate (iDemoPlayer.loadState ) it is showing value 5 ( no relation )

can anyone help me on this?

Thanks,

Sagar

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

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

发布评论

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

评论(1

潇烟暮雨 2024-09-15 00:37:29

loadState 是一个位掩码,因此:

loadState = 5 = MPMovieLoadStatePlayable & MPMovieLoadStateStalled

您可以侦听 MPMoviePlayerPlaybackDidFinishNotification,并在播放不再停滞时手动开始播放。

loadState is a bitmask, so:

loadState = 5 = MPMovieLoadStatePlayable & MPMovieLoadStateStalled

You can listen for the MPMoviePlayerPlaybackDidFinishNotification and manually start playback yourself when it's no longer stalled.

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