iOS 仿抖音圖片轉(zhuǎn)視頻效果

本圖片轉(zhuǎn)視頻加入了圖片縮放和轉(zhuǎn)場效果恩袱,通過向一個本地的黑色背景視頻black.mp4加入圖片的縮放和轉(zhuǎn)場動畫來實現(xiàn)

- (void)videoAnimation:(NSArray *)imgArr (void(^)(NSURL*))success{

//每張圖片顯示的時間

NSInteger picTime = 3;

//獲取背景視頻地址

? ? NSString *videoPath = [[NSBundle mainBundle] pathForResource:@"black" ofType:@"mp4"];

? ? NSString *cachePath = [NSTemporaryDirectory() stringByAppendingPathComponent:@"imagesComposition.mp4"];

? ? if ([[NSFileManager defaultManager] fileExistsAtPath:cachePath])

? ? ? ? {

? ? ? ? ? ? [[NSFileManager defaultManager] removeItemAtPath:cachePath error:nil];

? ? ? ? }

? ? NSURL? ? *exportUrl = [NSURLfileURLWithPath:cachePath];

//視頻時長

? ? NSInteger tempDuration =self.imgArr.count*picTime+0.1*self.imgArr.count;

? ? NSInteger duration = tempDuration >180.0?180.0:tempDuration;

//通過本地視頻地址創(chuàng)建視頻源

? ? AVURLAsset*videoAsset = [AVURLAsset assetWithURL:[NSURL fileURLWithPath:videoPath]];

? ? AVMutableComposition *mutableComposition = [AVMutableComposition composition];

//獲取視頻軌道

? ? AVMutableCompositionTrack *videoCompositionTrack = [mutableComposition addMutableTrackWithMediaType:AVMediaTypeVideo preferredTrackID:kCMPersistentTrackID_Invalid];

? ? AVAssetTrack *videoAssetTrack = [videoAsset tracksWithMediaType:AVMediaTypeVideo].firstObject;

? ? CMTimeValue value = videoAsset.duration.timescale* duration;

? ? CMTime endTime =CMTimeMake(value, videoAsset.duration.timescale);

? ? CMTimeRange timeR = CMTimeRangeMake(kCMTimeZero, endTime);

? ? [videoCompositionTrack insertTimeRange:timeR ofTrack:videoAssetTrack atTime:kCMTimeZero error:nil];

//獲取視頻軌道上的素材添加到最終合成的視頻軌道中

? ? AVMutableVideoCompositionInstruction *videoCompostionInstruction = [AVMutableVideoCompositionInstruction videoCompositionInstruction];

? ? videoCompostionInstruction.timeRange= timeR;

? ? AVMutableVideoCompositionLayerInstruction *videoLayerInstruction = [AVMutableVideoCompositionLayerInstruction videoCompositionLayerInstructionWithAssetTrack:videoCompositionTrack];

? ? [videoLayerInstruction setTransform:videoAssetTrack.preferredTransform atTime:kCMTimeZero];

? ? [videoLayerInstruction setOpacity:0 atTime:endTime];

? ? videoCompostionInstruction.layerInstructions=@[videoLayerInstruction];


? ? AVMutableVideoComposition *mutableVideoComposition = [AVMutableVideoComposition videoComposition];

? ? mutableVideoComposition.renderSize=CGSizeMake(720,1280);

? ? mutableVideoComposition.frameDuration=CMTimeMake(1,25);

? ? mutableVideoComposition.instructions=@[videoCompostionInstruction];


//創(chuàng)建一個存放圖片圖層的數(shù)組

? ? CALayer*bgLayer = [[CALayer alloc]init];

? ? bgLayer.frame=CGRectMake(0,0,720,1280);

? ? bgLayer.position=CGPointMake(360,640);

? ? NSMutableArray *imageLayers = [NSMutableArray array];

? ? for(UIImage*img?in?self.imgArr) {

? ? ? ? CALayer*imageL = [[CALayer alloc]init];

? ? ? ? imageL.contents= (__bridgeid)img.CGImage;

? ? ? ? imageL.bounds=CGRectMake(0,0,720,1280);

? ? ? ? imageL.contentsGravity = kCAGravityResizeAspect;

? ? ? ? imageL.backgroundColor = [UIColor blackColor].CGColor;

? ? ? ? imageL.anchorPoint=CGPointMake(0,0);

? ? ? ? [bgLayer addSublayer:imageL];

? ? ? ? [imageLayers addObject:imageL];

? ? }

//圖片圖層添加動畫效果

? ? ? ? [imageLayers enumerateObjectsUsingBlock:^(id? _Nonnullobj,NSUIntegeridx,BOOL*_Nonnullstop) {

? ? ? ? ? ? CABasicAnimation*animation1 = [CABasicAnimation animationWithKeyPath:@"transform.scale"];

? ? ? ? ? ? animation1.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];

? ? ? ? ? ? animation1.removedOnCompletion=false;

? ? ? ? ? ? animation1.beginTime=1.1+picTime* idx;

? ? ? ? ? ? animation1.fromValue= [NSNumber numberWithFloat:1.0];

? ? ? ? ? ? animation1.toValue= [NSNumber numberWithFloat:1.1];

? ? ? ? ? ? animation1.duration=2;

? ? ? ? ? ? animation1.fillMode=kCAFillModeBoth;

? ? ? ? ? ? [(CALayer*)obj addAnimation:animation1 forKey:@"transform.scale"];

? ? ? ? ? ? CABasicAnimation*animation2 = [CABasicAnimation animationWithKeyPath:@"position"];

? ? ? ? ? ? animation2.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];

? ? ? ? ? ? animation2.removedOnCompletion=false;

? ? ? ? ? ? animation2.beginTime=0.1+picTime* idx;

? ? ? ? ? ? animation2.fromValue= [NSValue valueWithCGPoint:CGPointMake(720* idx,0)];

? ? ? ? ? ? animation2.toValue= [NSValue valueWithCGPoint:CGPointMake(0,0)];

? ? ? ? ? ? animation2.duration=1;

? ? ? ? ? ? animation2.fillMode=kCAFillModeBoth;

? ? ? ? ? ? [(CALayer*)obj addAnimation:animation2forKey:@"position"];


? ? ? ? }];

//創(chuàng)建視頻圖層并添加生成的圖片動畫

? ? ? ? CALayer*parentLayer = [[CALayer alloc]init];

? ? ? ? CALayer*videoLayer = [[CALayer alloc]init];

? ? ? ? parentLayer.frame=CGRectMake(0,0,720,1280);

? ? ? ? videoLayer.frame=CGRectMake(0,0,720,1280);

? ? ? ? [parentLayer addSublayer:videoLayer];

? ? ? ? [parentLayer addSublayer:bgLayer];

? ? ? ? parentLayer.geometryFlipped=YES;

//視頻圖層加入最終合成的視頻軌道中

? ? mutableVideoComposition.animationTool = [AVVideoCompositionCoreAnimationTool videoCompositionCoreAnimationToolWithPostProcessingAsVideoLayer:videoLayer inLayer:parentLayer];


//導(dǎo)出視頻

? ? AVAssetExportSession *assetExport = [AVAssetExportSession exportSessionWithAsset:mutableComposition presetName:AVAssetExportPresetHighestQuality];

? ? assetExport.outputFileType = AVFileTypeMPEG4;

? ? assetExport.outputURL= exportUrl;

? ? assetExport.shouldOptimizeForNetworkUse = YES;

? ? assetExport.videoComposition= mutableVideoComposition;

? ? [assetExport exportAsynchronouslyWithCompletionHandler:^{

? ? ? ? if (assetExport.status == AVAssetExportSessionStatusCompleted) {

? ? ? ? ? ? if(success) {

? ? ? ? ? ? ? ? success(exportUrl);

? ? ? ? ? ? }

? ? ? ? }

? ? }];

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末读第,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子纲岭,更是在濱河造成了極大的恐慌抹竹,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,123評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件止潮,死亡現(xiàn)場離奇詭異窃判,居然都是意外死亡,警方通過查閱死者的電腦和手機喇闸,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,031評論 2 384
  • 文/潘曉璐 我一進店門袄琳,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人燃乍,你說我怎么就攤上這事唆樊。” “怎么了橘沥?”我有些...
    開封第一講書人閱讀 156,723評論 0 345
  • 文/不壞的土叔 我叫張陵窗轩,是天一觀的道長。 經(jīng)常有香客問我座咆,道長痢艺,這世上最難降的妖魔是什么仓洼? 我笑而不...
    開封第一講書人閱讀 56,357評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮堤舒,結(jié)果婚禮上色建,老公的妹妹穿的比我還像新娘。我一直安慰自己舌缤,他們只是感情好箕戳,可當(dāng)我...
    茶點故事閱讀 65,412評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著国撵,像睡著了一般陵吸。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上介牙,一...
    開封第一講書人閱讀 49,760評論 1 289
  • 那天壮虫,我揣著相機與錄音,去河邊找鬼环础。 笑死囚似,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的线得。 我是一名探鬼主播饶唤,決...
    沈念sama閱讀 38,904評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼贯钩!你這毒婦竟也來了募狂?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,672評論 0 266
  • 序言:老撾萬榮一對情侶失蹤角雷,失蹤者是張志新(化名)和其女友劉穎熬尺,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體谓罗,經(jīng)...
    沈念sama閱讀 44,118評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡粱哼,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,456評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了檩咱。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片揭措。...
    茶點故事閱讀 38,599評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖刻蚯,靈堂內(nèi)的尸體忽然破棺而出绊含,到底是詐尸還是另有隱情,我是刑警寧澤炊汹,帶...
    沈念sama閱讀 34,264評論 4 328
  • 正文 年R本政府宣布,位于F島的核電站,受9級特大地震影響充甚,放射性物質(zhì)發(fā)生泄漏以政。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,857評論 3 312
  • 文/蒙蒙 一伴找、第九天 我趴在偏房一處隱蔽的房頂上張望盈蛮。 院中可真熱鬧樊零,春花似錦梳杏、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,731評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽叛溢。三九已至塑悼,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間楷掉,已是汗流浹背厢蒜。 一陣腳步聲響...
    開封第一講書人閱讀 31,956評論 1 264
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留烹植,地道東北人斑鸦。 一個月前我還...
    沈念sama閱讀 46,286評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像草雕,于是被迫代替她去往敵國和親巷屿。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,465評論 2 348

推薦閱讀更多精彩內(nèi)容