美文网首页
IOS获取本地视频的缩略图

IOS获取本地视频的缩略图

作者: 蜗牛1992 | 来源:发表于2016-09-03 21:45 被阅读33次

    需要导入AVFondation框架

    
    +(UIImage *)getImage:(NSString *)videoURL
    {
    AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:[NSURL fileURLWithPath:videoURL] options:nil];
        AVAssetImageGenerator *gen = [[AVAssetImageGenerator alloc] initWithAsset:asset];
        gen.appliesPreferredTrackTransform = YES;
        CMTime time = CMTimeMakeWithSeconds(0.0, 600);
        NSError *error = nil;
        CMTime actualTime;    
        CGImageRef image = [gen copyCGImageAtTime:time actualTime:&actualTime error:&error];
        UIImage *thumb = [[UIImage alloc] initWithCGImage:image];
        CGImageRelease(image);
        return thumb;
    }
    

    相关文章

      网友评论

          本文标题:IOS获取本地视频的缩略图

          本文链接:https://www.haomeiwen.com/subject/ldqlettx.html