i have set up a darwin streaming server on my mac. now i need to stream these videos on my iphone real time
but the problems is the MPMoviePlayerPlaybackDidFinishNotification is called even before the videos are played
i have checked the server its up and running also i have successfully opened the url's in safari and quicktime. but the videos just wont be played on the simulator the code i have written is
NSURL *movieURL=[NSURL fileURLWithPath:@"rtsp://10.41.37.160/sample_300kbit.mov"];
// NSURL *movieURL = [NSURL URLWithString:@"rtsp://10.41.37.160/sample_300kbit.mp4"];
if (movieURL != nil)
{
moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];
[moviePlayer.view setFrame: CGRectMake(0, 0, 320, 400)];
[moviePlayer setControlStyle:MPMovieControlStyleFullscreen];
[moviePlayer setMovieSourceType:MPMovieSourceTypeStreaming];
[self.view addSubview:moviePlayer.view];
moviePlayer.fullscreen=YES;
// moviePlayer.initialPlaybackTime = -1.0;
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(moviePlayBackDidFinish:) name:MPMoviePlayerScalingModeDidChangeNotification object:moviePlayer];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(endPlay:) name:MPMoviePlayerPlaybackDidFinishNotification object:moviePlayer];
moviePlayer.scalingMode = MPMovieScalingModeAspectFit;
moviePlayer.shouldAutoplay=YES;
[moviePlayer play];
//[self reloadInputViews];
}
-(void)moviePlayBackDidFinish: (NSNotification*)notification
{
self.navigationItem.hidesBackButton = FALSE;
moviePlayer = [notification object];
[moviePlayer play];
}
-(void)endPlay: (NSNotification*)notification
{
NSLog(@"end Playing");
[[NSNotificationCenter defaultCenter] removeObserver:self name:MPMoviePlayerScalingModeDidChangeNotification object:moviePlayer];
[[NSNotificationCenter defaultCenter] removeObserver:self name:MPMoviePlayerPlaybackDidFinishNotification object:moviePlayer];
[moviePlayer stop];
[moviePlayer release];
}