iphone – 来自Youtube的缩略图

我想从youtube网址创建缩略图.我正在尝试使用thumbnail
ImageAtTime方法,但无法创建缩略图图像.请帮我.

这是我的代码:

 MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL URLWithString:@"http://www.youtube.com/watch?v=02Bzjj1eeeo"]];

UIImage *thumbnail = [player thumbnailImageAtTime:1.0 timeOption:MPMovieTimeOptionNearestKeyFrame];
[imgview setImage:thumbnail];
[player stop];

最佳答案 最好的方法是获取视频的帧并使用该图像帧与youtube网址:

NSString *urlStringImage=[NSString stringWithFormat:@"http://img.youtube.com/vi/%@/1.jpg",idOfYoutubeVideo];
NSData thumbnailImageData=[NSData dataWithContentsOfURL:[NSURL URLWithString:urlStringImage]];

例如:http://www.youtube.com/watch?v=K8cJKirMo-A

video id = K8cJKirMo-A

urlStringImage = http://img.youtube.com/vi/K8cJKirMo-A / default.jpg

使用default.png而不是1.jpg

点赞