NSURL *youTubeURL = [NSURL URLWithString:@"http://www.youtube.com/watch?v=HPwyVw_6vsQ&feature=youtu.be"]; // URL is a string which needs to be placed in @"" and close method call with ].
MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:youTubeURL];
imageSel = [player thumbnailImageAtTime:1.0 timeOption:MPMovieTimeOptionNearestKeyFrame];
我正在使用此代码从视频中获取缩略图,并在 imagesel 中返回 null 值。谁能帮我解决这个问题我正在使用 YouTube URL。当我将此代码用于主包中的视频时它工作正常。