15

当我尝试播放任何视频时,我的 MPMoviePlayerController 崩溃。

这只发生在模拟器上,在设备上运行良好。

错误如下:

2012-10-25 16:46:24.033 TheFasterChef[8529:14303] [MPAVController] Autoplay: Disabling autoplay for pause
2012-10-25 16:46:24.035 TheFasterChef[8529:14303] [MPAVController] Autoplay: Disabling autoplay
2012-10-25 16:46:24.172 TheFasterChef[8529:14303] [MPAVController] Autoplay: Skipping autoplay, disabled (for current item: 1, on player: 0)
2012-10-25 16:46:24.190 TheFasterChef[8529:14303] [MPAVController] Autoplay: Enabling autoplay
2012-10-25 16:46:24.227 TheFasterChef[8529:14303] [MPAVController] Autoplay: Likely to keep up or full buffer: 0
2012-10-25 16:46:24.227 TheFasterChef[8529:14303] [MPAVController] Autoplay: Skipping autoplay, not enough buffered to keep up.
2012-10-25 16:46:24.232 TheFasterChef[8529:14303] [MPAVController] Autoplay: Enabling autoplay
2012-10-25 16:46:24.238 TheFasterChef[8529:14303] [MPCloudAssetDownloadController] Prioritization requested for media item ID: 0

我的代码是调用 MPMoviePlayerController 的沼泽标准方法:

在 .h 文件中:

@property (retain) MPMoviePlayerController *videoPlayer;

在 .m 文件中:

NSBundle *appBundle = [NSBundle mainBundle];
//NSString *contentURLString = [appBundle pathForResource:videoIdentifier ofType:@"mp4"];
NSString *contentURLString = [appBundle pathForResource:@"test" ofType:@".mp4"];
NSURL *contentURL = [NSURL fileURLWithPath:contentURLString];

self.videoPlayer = [[MPMoviePlayerController alloc] initWithContentURL:contentURL];
[self.videoPlayer prepareToPlay];
[self.videoPlayer.view setFrame: self.view.bounds];
[self.view addSubview:self.videoPlayer.view];
[self.videoPlayer prepareToPlay];
[self.videoPlayer play];

我在不同的视图控制器中尝试了这段代码,错误结果相同。

我在一个新项目中尝试了这个代码段,它工作正常。

还有什么可能导致此错误?

这里的答案并没有为我解决。

4

4 回答 4

57

解决方案:从断点选项卡中删除“所有异常”。
这个答案来自 Till 上面的评论。我遇到了这个问题,我几乎错过了答案,因为它是一个评论。直到的回答帮助了我,所以我希望这可以帮助像我这样的其他人。

例外

于 2013-05-16T02:40:14.913 回答
5

你自己已经给出了答案。这纯粹是一个模拟器问题。一般来说,与媒体相关的 API 在设备上运行得更好(有时,只是)。

于 2013-02-03T17:33:37.963 回答
2

更好的是,如果您需要其他事情,请禁用(而不是删除)“所有例外”。

于 2013-07-22T11:47:38.813 回答
0

模拟器似乎不支持mp4,但支持mov。我遇到了同样的问题,将视频转换为mov后,它在模拟器上运行良好。

于 2013-12-11T07:10:03.053 回答