MPMoviewPlayerController を使用してライブ ストリーミングでアプリでビデオを再生しようとしていますが、バンドルに保存されているビデオでは問題なく動作しますが、ライブ ストリーミングでは動作しません。これを使用しています
//for Bundle Video
NSString *urlStr = [[NSBundle mainBundle] pathForResource:@"Video.mp4" ofType:nil];
//for Streaming Video
NSURL *videoURL = [NSURL URLWithString:@"http://streaming.disponivel.uol.com.br/video360p2/288148-1192657.mp4"];
self.playerController = [[MPMoviePlayerViewController alloc] initWithContentURL:videoURL];
[self.view addSubview:self.playerController.view];
self.playerController.view.frame = CGRectMake(0, 0, 320, 400);
[self.playerController.moviePlayer play];
ライブビデオをストリーミングするにはどうすればよいですか?