Why is no video showing using MPMoviePlayerController
- by nathanjosiah
MPMoviePlayerController *moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL URLWithString:@"http://feeds.harvest.org/~r/greglaurietv/~5/MW4zfyeubC8/HD100307-iPod.mp4"]];
moviePlayer.scalingMode = MPMovieScalingModeNone;
moviePlayer.controlStyle = MPMovieControlStyleDefault;
[moviePlayer play];
only audio is playing, but nothing shows up in my view.... what am i doing wrong?