Duet - Merge 2 Videos Side by Side

后端 未结 2 505
耶瑟儿~
耶瑟儿~ 2020-12-10 23:00

NOTE:- Merge Videos Side By Side WITHOUT Losing Video Quality

I think that is a Very Very Important Question, After a lot of search

2条回答
  •  误落风尘
    2020-12-10 23:43

    in fact, AVAssetExportSession is for simple needs, and it is too simple for your situation.

    You must use AVAssetWriter.

    You add AVAssetWriterInput to your AVAssetWriter.

    You can configure trasnform of the AVAssetWriterInput using its transform property.

    Then, you feed your AVAssetWriterInput with CMSampleBuffer (each images buffer) using append calls.

    See full Apple documentation for detailed example: https://developer.apple.com/library/archive/documentation/AudioVideo/Conceptual/AVFoundationPG/Articles/05_Export.html#//apple_ref/doc/uid/TP40010188-CH9-SW2

提交回复
热议问题