iOS 視頻合并添加音樂添加濾鏡添加水印動畫并導(dǎo)出的詳解

1浊闪,首先我們要做視頻導(dǎo)出合并這些基本的操作

? ?這部分代碼網(wǎng)上都有基本都是比較簡單沒什么坑腻要,首先導(dǎo)入視頻地址好唯,拿到AVAsset,然后利用AVMutableComposition去配置合并就行了

NSDictionary*optDict = [NSDictionarydictionaryWithObject:[NSNumbernumberWithBool:NO]forKey:AVURLAssetPreferPreciseDurationAndTimingKey];

AVAsset*firstAsset = [[AVURLAssetalloc]initWithURL:((FetchObject*)[videoArraysobjectAtIndex:0]).fileUroptions:optDict];

AVAsset*secondAsset = [[AVURLAssetalloc]initWithURL:((FetchObject*)[videoArraysobjectAtIndex:1]).fileUroptions:optDict];

AVAsset*endedAsset;

if(videoArrays.count>=3)

{

endedAsset= [[AVURLAssetalloc]initWithURL:((FetchObject*)[videoArraysobjectAtIndex:2]).fileUroptions:optDict];

}

AVMutableComposition*composition = [AVMutableCompositioncomposition];

//為視頻類型的的Track

AVMutableCompositionTrack*compositionTrack = [compositionaddMutableTrackWithMediaType:AVMediaTypeVideopreferredTrackID:kCMPersistentTrackID_Invalid];

//CMTimeRangeMake 指定起去始位置

CMTimeRangefirstTimeRange =CMTimeRangeMake(kCMTimeZero, firstAsset.duration);

CMTimeRangesecondTimeRange =CMTimeRangeMake(kCMTimeZero, secondAsset.duration);

CMTimeRangeendedTimeRange=CMTimeRangeMake(kCMTimeZero, endedAsset.duration);

[compositionTrackinsertTimeRange:firstTimeRangeofTrack:[firstAssettracksWithMediaType:AVMediaTypeVideo][0]atTime:kCMTimeZeroerror:nil];

[compositionTrackinsertTimeRange:secondTimeRangeofTrack:[secondAssettracksWithMediaType:AVMediaTypeVideo][0]atTime:firstTimeRange.durationerror:nil];

if(endedAsset!=nil)

{

[compositionTrackinsertTimeRange:endedTimeRangeofTrack:[endedAssettracksWithMediaType:AVMediaTypeVideo][0]atTime:secondTimeRange.durationerror:nil];

}

//只合并視頻,導(dǎo)出后聲音會消失伙判,所以需要把聲音插入到混淆器中

//添加音頻,添加本地其他音樂也可以,與視頻一致

AVMutableCompositionTrack*audioTrack = [compositionaddMutableTrackWithMediaType:AVMediaTypeAudiopreferredTrackID:kCMPersistentTrackID_Invalid];

if([firstAssettracksWithMediaType:AVMediaTypeAudio].count>0)

{

[audioTrackinsertTimeRange:firstTimeRangeofTrack:[firstAssettracksWithMediaType:AVMediaTypeAudio][0]atTime:kCMTimeZeroerror:nil];

}

//CMTimeRange totalTimeRange=CMTimeRangeMake(kCMTimeZero,CMTimeAdd(CMTimeAdd(secondTimeRange.duration, firstTimeRange.duration), endedTimeRange.duration));

if([secondAssettracksWithMediaType:AVMediaTypeAudio].count>0)

{

[audioTrackinsertTimeRange:secondTimeRangeofTrack:[secondAssettracksWithMediaType:AVMediaTypeAudio][0]atTime:firstAsset.durationerror:nil];

}

if(endedAsset!=nil)

{

if([endedAssettracksWithMediaType:AVMediaTypeAudio].count>0) {

[audioTrackinsertTimeRange:endedTimeRangeofTrack:[endedAssettracksWithMediaType:AVMediaTypeAudio][0]atTime:secondAsset.durationerror:nil];

}

}

拆分配置好后可以用AVAssetExportSession 導(dǎo)出

exporterSession= [[AVAssetExportSessionalloc]initWithAsset:compositionpresetName:AVAssetExportPreset1280x720];

if(videoComposition!=nil) {

exporterSession.videoComposition=videoComposition;

}

exporterSession.outputFileType=AVFileTypeQuickTimeMovie;

//混合后的視頻輸出路徑

NSString*outPutPath =MERAGVIDEOPATH;

if([[NSFileManagerdefaultManager]fileExistsAtPath:outPutPath])

{

[[NSFileManagerdefaultManager]removeItemAtPath:outPutPatherror:nil];

}

NSURL*outPutUrl = [NSURLfileURLWithPath:outPutPath];

exporterSession.outputURL= outPutUrl;//如果文件已存在尽狠,將造成導(dǎo)出失敗

exporterSession.shouldOptimizeForNetworkUse=YES;//用于互聯(lián)網(wǎng)傳輸

[exporterSessionexportAsynchronouslyWithCompletionHandler:^{

2.我們可以利用gpuimage 第三方框架做濾鏡(這里面有很多坑衔憨。。)

gpuimage 是個老外寫的濾鏡第三方庫支持圖片和視頻 https://github.com/BradLarson/GPUImage

首先第一個坑: 美工給你什么做濾鏡袄膏,最好要你們美工導(dǎo)出oringal lookup table格子圖 就是gpuimage里面有的讓你們美工按照你們需要的濾鏡調(diào)用ps導(dǎo)出

fitler=[[GPUImageFilteralloc]init];

self.filterLookup= [[GPUImageLookupFilteralloc]init];

self.lookupImageSource= [[GPUImagePicturealloc]initWithImage:[UIImageimageNamed:@"N1.png"]];

[self.lookupImageSourceaddTarget:self.filterLookupatTextureLocation:1];

[self.lookupImageSourceuseNextFrameForImageCapture];

[self.lookupImageSourceprocessImage];

fitler=self.filterLookup;

這樣子你就可以配置出一個你需要的濾鏡fitler

然后你要播放預(yù)覽加了濾鏡的視頻

我們不能用傳統(tǒng)的播放器巫财,我們需要自己寫一個播放器,需要用到avplayer 和avplayeritem,還有GPUImageMovie gpuimage的本地視頻播放

- (void)setFitlerView:(GPUImageFilter*)fitler{

_avplayer=[[AVPlayeralloc]init];

_avplayerItem=[[AVPlayerItemalloc]initWithURL:_videoUrl];

[_avplayerreplaceCurrentItemWithPlayerItem:_avplayerItem];

[selfsetFillMode:kGPUImageFillModePreserveAspectRatioAndFill];

_movieFile=[[GPUImageMoviealloc]initWithPlayerItem:_avplayerItem];

_movieFile.url=_videoUrl;

[_movieFilesetPlayAtActualSpeed:YES];

[_movieFilesetShouldRepeat:YES];

[_movieFileaddTarget:fitler];

[fitleraddTarget:self];

[_movieFilestartProcessing];

[_avplayerplay];

}


3.添加音樂哩陕,這個用原生avfoundation,

4.添加水印動畫(這里面也有很多坑平项。。)

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末悍及,一起剝皮案震驚了整個濱河市闽瓢,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌心赶,老刑警劉巖扣讼,帶你破解...
    沈念sama閱讀 211,817評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異缨叫,居然都是意外死亡椭符,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,329評論 3 385
  • 文/潘曉璐 我一進(jìn)店門耻姥,熙熙樓的掌柜王于貴愁眉苦臉地迎上來销钝,“玉大人欺冀,你說我怎么就攤上這事鞋真。” “怎么了运悲?”我有些...
    開封第一講書人閱讀 157,354評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長似忧。 經(jīng)常有香客問我渣叛,道長,這世上最難降的妖魔是什么盯捌? 我笑而不...
    開封第一講書人閱讀 56,498評論 1 284
  • 正文 為了忘掉前任淳衙,我火速辦了婚禮,結(jié)果婚禮上饺著,老公的妹妹穿的比我還像新娘箫攀。我一直安慰自己,他們只是感情好瓶籽,可當(dāng)我...
    茶點故事閱讀 65,600評論 6 386
  • 文/花漫 我一把揭開白布匠童。 她就那樣靜靜地躺著埂材,像睡著了一般塑顺。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上俏险,一...
    開封第一講書人閱讀 49,829評論 1 290
  • 那天严拒,我揣著相機與錄音,去河邊找鬼竖独。 笑死裤唠,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的莹痢。 我是一名探鬼主播种蘸,決...
    沈念sama閱讀 38,979評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼竞膳!你這毒婦竟也來了航瞭?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,722評論 0 266
  • 序言:老撾萬榮一對情侶失蹤坦辟,失蹤者是張志新(化名)和其女友劉穎刊侯,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體锉走,經(jīng)...
    沈念sama閱讀 44,189評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡滨彻,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,519評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了挪蹭。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片亭饵。...
    茶點故事閱讀 38,654評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖梁厉,靈堂內(nèi)的尸體忽然破棺而出冬骚,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布只冻,位于F島的核電站庇麦,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏喜德。R本人自食惡果不足惜山橄,卻給世界環(huán)境...
    茶點故事閱讀 39,940評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望舍悯。 院中可真熱鬧航棱,春花似錦、人聲如沸萌衬。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,762評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽秕豫。三九已至朴艰,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間混移,已是汗流浹背祠墅。 一陣腳步聲響...
    開封第一講書人閱讀 31,993評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留歌径,地道東北人毁嗦。 一個月前我還...
    沈念sama閱讀 46,382評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像回铛,于是被迫代替她去往敵國和親狗准。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,543評論 2 349

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