寫在開篇
周六需要測(cè)試各類視頻源和各種方法獲取縮略圖的時(shí)間,于是寫個(gè)小demo惕味,簡單查了下幾個(gè)相關(guān)帖子僚稿,不知道是不是我查詢的關(guān)鍵詞有問題蹦掐,結(jié)果太雜葛家,有用的呢排版感覺又不夠友好,自己整理完就覺得還是發(fā)出來一下吧泌类,畢竟多一份參考也是好的癞谒。話不多說。上代碼刃榨。
獲取視頻截圖&縮略圖
#define k_THUMBNAIL_IMG_WIDTH 100//縮略圖及cell大小
#define k_FPS 1//一秒想取多少幀
//這本來是個(gè)異步調(diào)用弹砚,但寫成這種方便大家看和復(fù)制來直接測(cè)試
- (UIImage*)getVideoThumbnailWithUrl:(NSURL*)videoUrl second:(CGFloat)second
{
if (!videoUrl)
{
NSLog(@"WARNING:videoUrl為空");
return nil;
}
AVURLAsset *urlSet = [AVURLAsset assetWithURL:videoUrl];
AVAssetImageGenerator *imageGenerator = [AVAssetImageGenerator assetImageGeneratorWithAsset:urlSet];
imageGenerator.appliesPreferredTrackTransform = YES;
imageGenerator.apertureMode = AVAssetImageGeneratorApertureModeEncodedPixels;
/*
如果不需要獲取縮略圖,就設(shè)置為NO枢希,如果需要獲取縮略圖桌吃,則maximumSize為獲取的最大尺寸。
以BBC為例苞轿,getThumbnail = NO時(shí)茅诱,打印寬高數(shù)據(jù)為:1920*1072。
getThumbnail = YES時(shí)搬卒,maximumSize為100*100瑟俭。打印寬高數(shù)據(jù)為:100*55.
注:不乘[UIScreen mainScreen].scale,會(huì)發(fā)現(xiàn)縮略圖在100*100很虛契邀。
*/
BOOL getThumbnail = YES;
if (getThumbnail)
{
CGFloat width = [UIScreen mainScreen].scale * k_THUMBNAIL_IMG_WIDTH;
imageGenerator.maximumSize = CGSizeMake(width, width);
}
NSError *error = nil;
CMTime time = CMTimeMake(second,k_FPS);
CMTime actucalTime;
CGImageRef cgImage = [imageGenerator copyCGImageAtTime:time actualTime:&actucalTime error:&error];
if (error) {
NSLog(@"ERROR:獲取視頻圖片失敗,%@",error.domain);
}
CMTimeShow(actucalTime);
UIImage *image = [UIImage imageWithCGImage:cgImage];
NSLog(@"imageWidth=%f,imageHeight=%f",image.size.width,image.size.height);
CGImageRelease(cgImage);
return image;
}
需要說明的都大概寫了注釋摆寄,寫了個(gè)demo,點(diǎn)擊按鈕后坯门,會(huì)將對(duì)應(yīng)片源每秒取k_FPS幀圖片微饥,順序展示在collectionview上。
稍后會(huì)把demo發(fā)上來古戴,有問題可以留言或者私信討論欠橘。