Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

If you're using ARC, you need to declare your MPMoviePlayerController as a property. So,

Add this your .h file

@property (strong,nonatomic) MPMoviePlayerController *moviePlayerController;

and in .m file

self.moviePlayerController = [[MPMoviePlayerController alloc]initWithContentURL:movieURL];

I've faced this issue and solved it

share|improve this answer
Hi, thanx for your suggestion. Actually i already tried it befor posting since similr issues seems to get solved that way. But in my case it doesn't work, i think the problem in the url path of the video loaded from the camera roll. – Malloc Jan 5 at 22:09
In any case, you should declare as a property. NSLog(@"%@",moviePath) what does it display ? – mstfbsnli Jan 5 at 22:15
It display a path like this: /private/var/mobile/Applications/5912AED1-S1DE-25EF-A8B-EF7AD21E3R65/tmp//trim.‌​uUcGJU.MOV – Malloc Jan 5 at 22:19
Any reason,why down voted ? – mstfbsnli Jan 7 at 0:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.