AVFoundationを使用して複数のビデオクリップを結合しようとしています。 私はすべてのビデオクリップが同じ向き(縦または横)で記録した場合、コードが上記正常に動作AVFoundationを使用して異なる方向のビデオクリップを結合する方法
AVMutableComposition *composition = [AVMutableComposition composition];
AVMutableCompositionTrack *compositionVideoTrack = [composition addMutableTrackWithMediaType:AVMediaTypeVideo preferredTrackID:kCMPersistentTrackID_Invalid];
AVMutableCompositionTrack *compositionAudioTrack = [composition addMutableTrackWithMediaType:AVMediaTypeAudio preferredTrackID:kCMPersistentTrackID_Invalid];
CMTime startTime = kCMTimeZero;
/*videoClipPaths is a array of paths of the video clips recorded*/
//for loop to combine clips into a single video
for (NSInteger i=0; i < [videoClipPaths count]; i++) {
NSString *path = (NSString*)[videoClipPaths objectAtIndex:i];
NSURL *url = [[NSURL alloc] initFileURLWithPath:path];
AVURLAsset *asset = [AVURLAsset URLAssetWithURL:url options:nil];
[url release];
AVAssetTrack *videoTrack = [[asset tracksWithMediaType:AVMediaTypeVideo] objectAtIndex:0];
AVAssetTrack *audioTrack = [[asset tracksWithMediaType:AVMediaTypeAudio] objectAtIndex:0];
//set the orientation
if(i == 0)
{
[compositionVideoTrack setPreferredTransform:videoTrack.preferredTransform];
}
ok = [compositionVideoTrack insertTimeRange:CMTimeRangeMake(kCMTimeZero, [asset duration]) ofTrack:videoTrack atTime:startTime error:nil];
ok = [compositionAudioTrack insertTimeRange:CMTimeRangeMake(kCMTimeZero, [asset duration]) ofTrack:audioTrack atTime:startTime error:nil];
startTime = CMTimeAdd(startTime, [asset duration]);
}
//export the combined video
NSString *combinedPath = /* path of the combined video*/;
NSURL *url = [[NSURL alloc] initFileURLWithPath: combinedPath];
AVAssetExportSession *exporter = [[[AVAssetExportSession alloc] initWithAsset:composition presetName:AVAssetExportPreset640x480] autorelease];
exporter.outputURL = url;
[url release];
exporter.outputFileType = [[exporter supportedFileTypes] objectAtIndex:0];
[exporter exportAsynchronouslyWithCompletionHandler:^(void){[self combineVideoFinished:exporter.outputURL status:exporter.status error:exporter.error];}];
下のコードを使用してAVMutableCompositionを使用して単一のビデオを作成することができます。しかし、クリップにオリエンテーションが混在していると、最終ビデオの一部が右(または左)に90度回転します。
私は、すべてのクリップを合成しながら、同じ向き(たとえば、最初のクリップの向き)に変換する方法があるのだろうと思っていました。私はXCodeのドキュメントAVMutableVideoCompositionLayerInstruction
から読んだからでしょうAVAsset
を変換するために使用することができるようだが、私は任意のヘルプを作成して適用されるいくつかの異なる層命令を、対応するクリップにと組成(AVMutableComposition*
)
に、次に使用するかどうかはわかりませんありがとう!
しかし、私は後で問題が適用される変換に遭遇しませんでした – Song
奇妙です。私は2つのファイルをマージしようとしていません、私はAVAssetExportSessionを取得してビデオの向きを維持しようとしています。あなたは '[compositionVideoTrack setPreferredTransform:transform]'を呼び出すことができるはずですが、動作しません。あなたの方法を使っても私にとってはうまくいきませんでした。しかし、*両方を使って*うまくいった。フレームワークのバグのように聞こえます。私はまた、エクスポートセッションの設定 'AVAssetExportPresetPassthrough'を使用しています。 – Dex
私はまた、タイミングに関しても非常に奇妙な問題を抱えています。多くの場合、ビデオの最後の1秒程度が途切れることがあります。 – Dex