I'm trying to make MPMoviePlayerViewController play a succession of videos in my application. I want it to start with the button press and play the first video. When the user does swipe gesture on video (fullscreen mode) I want it to start the next movie. I' trying to use the function setContentURL for the same MPMoviePlayerViewController to make it start with the next video. All the movie files are stored locally.

The first video starts and plays fine and the swipe gesture seem to be caught ok, as the diagnostic message appears in console, but the problem is that instead of starting the next video MPMoviePlayerViewController just quits and goes back to the main view of the apllication.

Here is some of the code I use.

This is how I start video:

NSString *path = [[NSBundle mainBundle] pathForResource:@"file1" ofType:@"m4v"];

player = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL fileURLWithPath:path]];

player.moviePlayer.controlStyle = MPMovieControlStyleNone;    

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(movieFinishedPlaying:)
                                             name:MPMoviePlayerPlaybackDidFinishNotification object:[player moviePlayer]];

player.moviePlayer.repeatMode = NO;

UISwipeGestureRecognizer *swipeRight = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipedRight:)];
swipeRight.direction = UISwipeGestureRecognizerDirectionRight;

[player.view addGestureRecognizer:swipeRight];

[self presentMoviePlayerViewControllerAnimated:player];

Then, in function that handles swipe gesture I set the path for next file and try to reload MPMoviePlayerViewController:

[player.moviePlayer setContentURL:[NSURL fileURLWithPath:path2]];
[player.moviePlayer play];

But it just stops playing the first video and goes to the main view of the application.

Does anyone have the idea why this happens?

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.