Play multiple videos
I'm actually using the MPMoviePlayerController for play video in my iPad app. Actually, I can easly play 1 video but I'm trying to play in the same time 2 video, here is my code : // Look for the video in the main bundle NSString *urlStr = [[NSBundle mainBundle] pathForResource:@"3idiots.mov" ofType:nil]; NSURL *url = [NSURL fileURLWithPath:urlStr]; NSString *urlStr2 = [[NSBundle mainBundle] pathForResource:@"3idiots.mov" ofType:nil]; NSURL *url2 = [NSURL fileURLWithPath:urlStr2]; videoPlayer = [[MPMoviePlayerController alloc] initWithContentURL:url]; [self.view addSubview:videoPlayer.view];