search

Home  >  Q&A  >  body text

ios - 相册选择视频 截取第一针当缩略图

相册选择视频 截取第一针当缩略图,并且上传

迷茫迷茫2772 days ago678

reply all(1)I'll reply

  • 怪我咯

    怪我咯2017-04-18 09:59:23

    This is the method I use to get screenshots:

    +(UIImage *)thumbnailOfAVAsset:(AVURLAsset *)asset {
        AVAssetImageGenerator *generator = [[AVAssetImageGenerator alloc] initWithAsset:asset];
        generator.appliesPreferredTrackTransform = YES;
        NSError *err = NULL;
        CMTime time = CMTimeMake(0, 2);
        CGImageRef oneRef = [generator copyCGImageAtTime:time actualTime:NULL error:&err];
        UIImage *one = [UIImage imageWithCGImage:oneRef];// [[UIImage alloc] initWithCGImage:oneRef];
        
        return one;
    }

    This method of obtaining screenshots is best not to be executed in the main thread.

    NSURL *url = [NSURL fileURLWithPath:path];//视频地址
    AVURLAsset *asset = [AVURLAsset assetWithURL:url];
    
    UIImage *thumbnailImage = [Class thumbnailOfAVAsset:asset];

    reply
    0
  • Cancelreply