IOS录像文件预览

来源:互联网 发布:java中的hashcode 编辑:程序博客网 时间:2024/05/17 22:20

+(UIImage *)getImage:(NSString *)videoURL

{

       AVURLAsset *asset = [[AVURLAssetalloc] initWithURL:[NSURLfileURLWithPath:videoURL] options:nil];

        AVAssetImageGenerator *gen = [[AVAssetImageGeneratoralloc] initWithAsset:asset];

        gen.appliesPreferredTrackTransform =YES;

       CMTime time = CMTimeMakeWithSeconds(0.0,600);

       NSError *error = nil;

       CMTime actualTime;

       CGImageRef image = [gen copyCGImageAtTime:time actualTime:&actualTimeerror:&error];

       UIImage *thumb = [[UIImagealloc] initWithCGImage:image];

       CGImageRelease(image);

       return thumb;

}


0 0
原创粉丝点击