iphone sdk > 3.0 . Video Thumbnail?

后端 未结 7 839
死守一世寂寞
死守一世寂寞 2020-12-02 12:45

From what i have read apple doesnt expose the api to allow developers to get a thumbnail of a movie using the current sdk.

Can any one share some code as to how the

7条回答
  •  北海茫月
    2020-12-02 13:23

    NSString *videoLink=[info objectForKey:@"UIImagePickerControllerMediaURL"];
    
    MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:(NSURL*)videoLink];
    UIImage *imageSel = [player thumbnailImageAtTime:1.0 timeOption:MPMovieTimeOptionNearestKeyFrame];
    [player stop];
    [player release];
    

提交回复
热议问题