Problem streaming video on iPhone, only audio is playing
- by Sheehan Alam
I am trying to stream a video using MPMoviePlayerController but only audio is working. How can I get the video to appear?
- (void)loadView {
NSString *url = @"http://d1xt8xjto3lfs9.cloudfront.net/060810/afternoonupdate060810.mov";
MPMoviePlayerController *moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL URLWithString:url]];
[moviePlayer play];
}