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

Hy everybody

I am trying to acquire a thumbnail from a video url. The video is a stream (HLS) with the m3u8 format. I've already tried requestThumbnailImagesAtTimes from the MPMoviePlayerController, but that didn't work. Does anyone have a solution for that problem? If so how'd you do it?

share|improve this question
You can visit to the link given below. Very useful. developer.apple.com/library/IOs/#documentation/AVFoundation/… – Ajeet Pratap Maurya Nov 11 '11 at 6:02

2 Answers

Acquire a thumbnail from a video url.

    NSString *strVideoURL = @"http://www.xyzvideourl.com/samplevideourl";
    NSURL *videoURL = [NSURL URLWithString:strVideoURL] ;
    MPMoviePlayerController *player = [[[MPMoviePlayerController alloc] initWithContentURL:videoURL]autorelease];
    UIImage  *thumbnail = [player thumbnailImageAtTime:1.0 timeOption:MPMovieTimeOptionNearestKeyFrame];
    player = nil;

Replace your video URL string with strVideoURL. You will get thumbnail as a output from video. And thumbnil is UIImage type data !

share|improve this answer
2  
i am using this code for the thumbnail of video from the url of youtube but it is not giving me the image.i am using to put the thumbnail in the table view so can you help me – Jaspreet Singh Oct 4 '12 at 8:26
I think you can't get the video from Youtube URL like this www.youtube.com/watch?v=xxxxxxx – Shinigamae Oct 29 '12 at 4:26

If you don't want to use MPMoviePlayerController, you can do this:

    AVAsset *asset = [AVAsset assetWithURL:sourceURL];
    AVAssetImageGenerator *imageGenerator = [[AVAssetImageGenerator alloc]initWithAsset:asset];
    CMTime time = CMTimeMake(1, 1);
    CGImageRef imageRef = [imageGenerator copyCGImageAtTime:time actualTime:NULL error:NULL];
    UIImage *thumbnail = [UIImage imageWithCGImage:imageRef];
    CGImageRelease(imageRef);  // CGImageRef won't be released by ARC

I prefer using AVAssetImageGenerator over MPMoviePlayerController because it is thread-safe, and you can have more than one instantiated at a time.

share|improve this answer
1  
The CGImageRef you get from -copyCGImageAtTime:actualTime:error: needs to be released with CGImageRelease(); – rbrown Dec 7 '12 at 18:29
@rbrown Thanks, updated. – Aaron Brager Dec 10 '12 at 15:53

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.