我要求将5秒视频分割为iphone上的图像/帧。
是否可以使用目标C.Any库?
帮助非常明显。
谢谢,
答案 0 :(得分:1)
您可以通过多种方式从视频中获取图片。其中一些是: -
NSURL *videoURL = [NSURL fileURLWithPath:url];
MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:videoURL];
UIImage *thumbnail = [player thumbnailImageAtTime:1.0 timeOption:MPMovieTimeOptionNearestKeyFrame];
//Player autoplays audio on init
[player stop];
[player release];
您还可以查看以下链接: -
Is there any way other than thumbnail method to take a screenshot of an video in Iphone?
How to take a screenshot from an video playing through MPMediaPlayerController in iPhone?
它可能对你有所帮助:)。
谢谢:)