2

我正在使用以下代码尝试合并存储在文档文件夹中的两个 m4v 文件:

CMTime insertionPoint = kCMTimeZero;
NSError * error = nil;

AVMutableComposition *composition = [AVMutableComposition composition];

AVURLAsset* asset = [AVURLAsset URLAssetWithURL: [assetURLArray objectForKey:kIntroVideo] options:nil];

if (![composition insertTimeRange:CMTimeRangeMake(kCMTimeZero, asset.duration) 
                          ofAsset:asset 
                           atTime:insertionPoint 
                            error:&error]) 
{
    NSLog(@"error: %@",error);
}

insertionPoint = CMTimeAdd(insertionPoint, asset.duration);

AVURLAsset* asset2 = [AVURLAsset URLAssetWithURL: [assetURLArray objectForKey:kMainVideo] options:nil];

if (![composition insertTimeRange:CMTimeRangeMake(kCMTimeZero, asset2.duration) 
                          ofAsset:asset2 
                           atTime:insertionPoint 
                            error:&error]) 
{
    NSLog(@"error: %@",error);
}

AVAssetExportSession *exportSession = [[AVAssetExportSession alloc] initWithAsset:composition presetName:AVAssetExportPresetHighestQuality];

NSString *exportVideoPath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/FinishedVideo.m4v"];

NSURL *exportURL = [NSURL fileURLWithPath:exportVideoPath];
exportSession.outputURL = exportURL;
exportSession.outputFileType = AVFileTypeQuickTimeMovie;
[exportSession exportAsynchronouslyWithCompletionHandler:^{
    switch (exportSession.status) {
        case AVAssetExportSessionStatusFailed:{
            NSLog (@"FAIL");
            break;
        }
        case AVAssetExportSessionStatusCompleted: {
            NSLog (@"SUCCESS");
}
};
 }]; 
}

问题是这两个视频无法正确合并。总合并影片的持续时间是正确的,但是视频永远不会转换到第二部电影,并在其持续时间内继续显示第一部电影的最后一帧。奇怪的是,我可以听到在后台播放的第二个视频的音频。

有谁知道出了什么问题?

编辑 - 奇怪的是,如果我合并两个长度完全相同的剪辑,它就可以工作。

编辑 - 已尝试将文件扩展名更改为 .mov 有同样的问题。

4

2 回答 2

2

您尚未将组合设置为 exportSession。

行后:

AVAssetExportSession *exportSession = [[AVAssetExportSession alloc] initWithAsset:composition presetName:AVAssetExportPresetHighestQuality];

添加这一行

exportSession.videoComposition = composition;

这应该可以解决您的问题。

于 2015-03-03T14:41:30.203 回答
1

好的 - 所以我最终通过使用单独的 AVMutableComposition 轨道然后为音频和视频设置一个可变组合来完成这项工作。

于 2012-04-25T18:10:55.837 回答