Я транслирую фильм на iPad. Если я просто загружаю файл mp4, плеер не запускается автоматически, но на примере m3u8 он настаивает на автозапуске. Кто-нибудь сталкивался с этим? Я что-то не так делаю?
- (id)initWithVideo:(VideoDO*)video frame:(CGRect)rect {
NSURL* videoURL = [NSURL URLWithString:@"http://devimages.apple.com/iphone/samples/bipbop/bipbopall.m3u8"]; // With this URL, player starts automatically
self.moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:videoURL];
moviePlayer.shouldAutoplay = NO;
moviePlayer.controlStyle = MPMovieControlStyleEmbedded;
moviePlayer.view.frame = rect;
moviePlayer.view.backgroundColor = [UIColor blackColor];
[moviePlayer prepareToPlay];
self.view = moviePlayer.view;
[moviePlayer stop];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(movieFinishedCallback:) name:MPMoviePlayerPlaybackDidFinishNotification object:moviePlayer];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(movieChangedLoadState:) name:MPMoviePlayerLoadStateDidChangeNotification object:moviePlayer];
return self;
}