Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MPMoviePlayerController Simulator Crash

My MPMoviePlayerController crashes when I try and play any video.

This happens only on the simulator, works fine on a device.

Error is as follows:

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

My code is the bog standard method for calling MPMoviePlayerController:

In .h file:

@property (retain) MPMoviePlayerController *videoPlayer;

In .m file:

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];

I have tried this snippet of code in a different view controller with the same error result.

I have tried this snippet code in a new project and it works fine.

What else could be causing this error?

The answer here did not solve it for me.

like image 300
Alan Avatar asked Oct 25 '12 15:10

Alan


1 Answers

Solution: Remove the "All Exceptions" from the breakpoint tab.
This answer is from Till's comment above. I had this problem and I almost missed the answer because it is a comment. Till's answer helped me, so I hope this helps someone else like me.

exception

like image 116
RawMean Avatar answered Oct 12 '22 00:10

RawMean