MPMoviePlayerController - streaming works on 3GS, not on anything pre-3GS

Posted by Canada Dev on Stack Overflow See other posts from Stack Overflow or by Canada Dev
Published on 2010-01-23T20:21:52Z Indexed on 2010/03/23 11:53 UTC
Read the original article Hit count: 421

I am having some serious issues and annoyances with MPMoviePlayerController. In my app you can watch trailers for some movies in .mov format.

I have tested with a friend and had users report that it does not work on their device, which are all 3G. I have tested on my own, a 3GS and playback works fine. I have tried on a 1st gen iPhone and it doesn't work. So I am lead to believe it's a memory issue, and that it's simply stopping the playback and returning to the previous screen.

Below is the code I use to launch the player, which is straight out of the MoviePlayer example from Apple.

MPMoviePlayerController *mp = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL URLWithString:trailerURL]];
if (mp) {
    self.moviePlayer = mp;
    [mp release];
    [self.moviePlayer play];
}

I have tried to check the NSError from the notifications, but the only thing I get is "An unknown playback error occurred" for both the localizedDescription and localizedRecoverySuggestion, making it impossible to figure out exactly why it's not working.

I have seen many examples of people who just have issues with the movie player, but it's starting to annoy me that it sometimes seem to work fine and other times it just doesn't (again, appearing like a memory issue).

Thanks for any help/feedback provided

© Stack Overflow or respective owner

Related posts about mpmovieplayercontroller

Related posts about iphone