Why is no video showing using MPMoviePlayerController
Posted
by nathanjosiah
on Stack Overflow
See other posts from Stack Overflow
or by nathanjosiah
Published on 2010-04-22T21:41:46Z
Indexed on
2010/04/22
21:43 UTC
Read the original article
Hit count: 748
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?
© Stack Overflow or respective owner