When i pick a video from the camera roll, it's supposed to run it according to my code below:
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{
NSString *mediaType=[info objectForKey:UIImagePickerControllerMediaType];
//If the picked media is a video
if (CFStringCompare((CFStringRef)mediaType, kUTTypeMovie, 0)==kCFCompareEqualTo) {
NSString *moviePath=[[info objectForKey:UIImagePickerControllerMediaURL]path];
NSURL *movieURL=[NSURL URLWithString:moviePath];
MPMoviePlayerController *mpMovie=[[MPMoviePlayerController alloc]initWithContentURL:movieURL];
NSLog(@"%@",moviePath);
self.mpController=mpMovie;
//Prepare the notification for didiFinish
[[NSNotificationCenter defaultCenter]addObserver:self
selector:@selector(moviePlayBackDidFinish:)
name:MPMoviePlayerPlaybackDidFinishNotification
object:self.mpController];
self.mpController.movieSourceType=MPMovieSourceTypeStreaming;
[self.mpController prepareToPlay];
[self.mpController.view setFrame:self.view.bounds];
[self.view addSubview:self.mpController.view];
[self.mpController play];
}
[[picker presentingViewController] dismissViewControllerAnimated:YES completion:NULL];
}
//The notification handler
-(void)moviePlayBackDidFinish:(NSNotification*)notification{
NSLog(@"moviePlayBackDidFinish");
MPMoviePlayerController *player = [notification object];
[[NSNotificationCenter defaultCenter]
removeObserver:self
name:MPMoviePlayerPlaybackDidFinishNotification
object:player];
if ([player
respondsToSelector:@selector(setFullscreen:animated:)])
{
[player.view removeFromSuperview];
}
}
However, what i get is a blank screen and the moviePlayBackDidFinish gets called directly. Am i missing something on how to play a video from the camera roll?