这是我的问题,我尝试使用 MPMoviePlayerController 来播放视频流,所以我准备将MPMoviePlayerController
的视图放在我的自定义viewController中设置controlStyle
属性为 MPMovieControlStyleNone ,我提供自定义播放器控制器,并在我的init方法中:
_moviePlayer = [[MPMoviePlayerController alloc] init];
_moviePlayer.movieSourceType = MPMovieSourceTypeStreaming;
_moviePlayer.shouldAutoplay = YES;
_moviePlayer.scalingMode = MPMovieScalingModeAspectFit;
_moviePlayer.controlStyle = MPMovieControlStyleNone;
并且我将自定义播放器控件放在moviePlayer
上,当我准备播放时,我从网络获取真实网址并让moviePlayer
播放:
_moviePlayer.contentURL = [NSURL URLWithString:url];
[_moviePlayer prepareToPlay];
然后我注册相关通知以报告发生的事情
我提供简单的搜索方法seek
并且只调用moviePlayer
的搜索方法,我发现当网络延迟很高并且我试图寻找,经过一段时间后,应用程序崩溃了。以及调用堆栈:
`0 CoreFoundation 0x381bd8a7 __exceptionPreprocess + 186
1 libobjc.A.dylib 0x334ee259 objc_exception_throw + 32
2 AVFoundation 0x37afb0dd -[AVPlayerItem _attachToPlayer:forImmediateEnqueueing:shouldAppendItem:] + 320
3 AVFoundation 0x37af1edb -[AVPlayer _insertPlaybackItemOfItem:inPlayerQueueAfterPlaybackItemOfItem:] + 42
4 AVFoundation 0x37af2c37 __block_global_0 + 1038
5 libdispatch.dylib 0x34ae5c59 _dispatch_call_block_and_release + 12
6 libdispatch.dylib 0x34ae7ee7 _dispatch_main_queue_callback_4CF$VARIANT$mp + 194
7 CoreFoundation 0x381902ad __CFRunLoopRun + 1268
8 CoreFoundation 0x381134a5 CFRunLoopRunSpecific + 300
9 CoreFoundation 0x3811336d CFRunLoopRunInMode + 104
10 GraphicsServices0x365f6439 GSEventRunModal + 136
11 UIKit 0x30fc4cd5 UIApplicationMain + 1080
12 Player 0x000284dd main + 152
13 Player 0x0001abb8 start + 40
"Exception Name" = NSInvalidArgumentException
"Exception Reason" = "An AVPlayerItem cannot be associated with more than one instance of AVPlayer`
看到预期的原因,我想我可能初始化AVPlayer的多个实例,但我只有一个MPMoviePlayerController,可以任何一个指向我的方向吗?感谢
答案 0 :(得分:1)
您没有显示任何代码,因此无法理解您的问题。问题是你做错了,所以如果你需要帮助,你必须准确显示你正在做什么。
但请注意,Apple可能已经在帮助您。您收到的错误消息非常明确:
“Exception Reason”=“AVPlayerItem不能与多个AVPlayer实例相关联”
这可能是一个巨大的线索。考虑一下如何违反该规则可能会有所帮助。