在媒体加载期间显示 MPMoviePlayerController

发布于 2024-12-02 21:01:27 字数 1021 浏览 4 评论 0原文

我使用 MPMoviePlayerController 播放音频(例如: http://www.stanford .edu/group/edcorner/uploads/podcast/ballmer090506.mp3)或视频(例如:http://video.ted.com/talk/podcast/2011U/None/RicElias_2011U .mp4

myMoviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:theURL];
myMoviePlayer.view.frame = CGRectMake(-80, 80, 480, 320);
myMoviePlayer.controlStyle = MPMovieControlStyleFullscreen;
myMoviePlayer.movieSourceType = MPMovieSourceTypeFile;
myMoviePlayer.scalingMode = MPMovieScalingModeAspectFit;
myMoviePlayer.useApplicationAudioSession = TRUE;
[myMoviePlayer prepareToPlay];
[myMoviePlayer play];

它工作得很好,我唯一的一个问题是在加载时间(如果我的 3G 信号不好,则在 5 秒到 20 秒之间)接待处),我有黑屏。

我希望 MPMoviePlayerController 在此期间显示“正在加载...”标签和 UIActiviyIndi​​cator 在其顶部栏中,就像 YouTube 视频一样。

我怎样才能做到这一点?

谢谢。

I use a MPMoviePlayerController to play audio (ex: http://www.stanford.edu/group/edcorner/uploads/podcast/ballmer090506.mp3) or video (ex: http://video.ted.com/talk/podcast/2011U/None/RicElias_2011U.mp4)

myMoviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:theURL];
myMoviePlayer.view.frame = CGRectMake(-80, 80, 480, 320);
myMoviePlayer.controlStyle = MPMovieControlStyleFullscreen;
myMoviePlayer.movieSourceType = MPMovieSourceTypeFile;
myMoviePlayer.scalingMode = MPMovieScalingModeAspectFit;
myMoviePlayer.useApplicationAudioSession = TRUE;
[myMoviePlayer prepareToPlay];
[myMoviePlayer play];

It works well, my only one problem is during the loading time (between 5s and 20s if I have a bad 3G reception), I have a black screen.

I would like to have MPMoviePlayerController diplayed with the "Loading..." label and the UIActiviyIndicator in his top bar during this time, like YouTube videos.

How can I do that?

Thanks.

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

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

发布评论

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

评论(1

迷离° 2024-12-09 21:01:27

只需使用 MPMoviePlayerViewController 而不是 MPMoviePlayerController。它应该做你想做的事。

Just use MPMoviePlayerViewController instead of MPMoviePlayerController. It should do what you want.

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