码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发之视频根据url获取第一帧图片,获取任一帧图片

时间:2017-05-10 19:56:26      阅读:344      评论:0      收藏:0      [点我收藏+]

标签:setimage   with   ons   str   UI   ios开发   sse   amp   ref   

+ (UIImage*) thumbnailImageForVideo:(NSURL *)videoURL atTime:(NSTimeInterval)time {  AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:videoURL options:nil];  

    NSParameterAssert(asset);  

  AVAssetImageGenerator *assetImageGenerator =[[AVAssetImageGenerator alloc] initWithAsset:asset];  

     assetImageGenerator.appliesPreferredTrackTransform = YES;  

   assetImageGenerator.apertureMode = AVAssetImageGeneratorApertureModeEncodedPixels;  

      CGImageRef thumbnailImageRef = NULL;  

  CFTimeInterval thumbnailImageTime = time;  

  NSError *thumbnailImageGenerationError = nil;  

     thumbnailImageRef = [assetImageGenerator copyCGImageAtTime:CMTimeMake(thumbnailImageTime, 60)actualTime:NULL error:&thumbnailImageGenerationError];  

  if(!thumbnailImageRef)  

      NSLog(@"thumbnailImageGenerationError %@",thumbnailImageGenerationError);  

      UIImage*thumbnailImage = thumbnailImageRef ? [[UIImage alloc]initWithCGImage: thumbnailImageRef] : nil;  

    return thumbnailImage;  

iOS开发之视频根据url获取第一帧图片,获取任一帧图片

标签:setimage   with   ons   str   UI   ios开发   sse   amp   ref   

原文地址:http://www.cnblogs.com/tangyuanby2/p/6837532.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!