3

我试图创建一个视频,在 iphone 上使用 avcomposition 一个接一个地显示两个视频。此代码有效,但是我只能在新创建的视频的整个持续时间内看到其中一个视频

- (void) startEdit{

 AVMutableComposition* mixComposition = [AVMutableComposition composition];

 NSString* a_inputFileName = @"export.mov";
 NSString* a_inputFilePath = [NSTemporaryDirectory() stringByAppendingPathComponent:a_inputFileName];
 NSURL*    a_inputFileUrl = [NSURL fileURLWithPath:a_inputFilePath];

 NSString* b_inputFileName = @"output.mov";
 NSString* b_inputFilePath = [NSTemporaryDirectory() stringByAppendingPathComponent:b_inputFileName];
 NSURL*    b_inputFileUrl = [NSURL fileURLWithPath:b_inputFilePath];

 NSString* outputFileName = @"outputFile.mov";
 NSString* outputFilePath = [NSTemporaryDirectory() stringByAppendingPathComponent:outputFileName];
 NSURL*    outputFileUrl = [NSURL fileURLWithPath:outputFilePath];

 if ([[NSFileManager defaultManager] fileExistsAtPath:outputFilePath]) 
  [[NSFileManager defaultManager] removeItemAtPath:outputFilePath error:nil];



 CMTime nextClipStartTime = kCMTimeZero;

 AVURLAsset* a_videoAsset = [[AVURLAsset alloc]initWithURL:a_inputFileUrl options:nil];
 CMTimeRange a_timeRange = CMTimeRangeMake(kCMTimeZero,a_videoAsset.duration);
 AVMutableCompositionTrack *a_compositionVideoTrack = [mixComposition addMutableTrackWithMediaType:AVMediaTypeVideo preferredTrackID:kCMPersistentTrackID_Invalid];
 [a_compositionVideoTrack insertTimeRange:a_timeRange ofTrack:[[a_videoAsset tracksWithMediaType:AVMediaTypeVideo] objectAtIndex:0] atTime:nextClipStartTime error:nil];

 nextClipStartTime = CMTimeAdd(nextClipStartTime, a_timeRange.duration);

 AVURLAsset* b_videoAsset = [[AVURLAsset alloc]initWithURL:b_inputFileUrl options:nil];
 CMTimeRange b_timeRange = CMTimeRangeMake(kCMTimeZero, b_videoAsset.duration);
 AVMutableCompositionTrack *b_compositionVideoTrack = [mixComposition addMutableTrackWithMediaType:AVMediaTypeVideo preferredTrackID:kCMPersistentTrackID_Invalid];
    [b_compositionVideoTrack insertTimeRange:b_timeRange ofTrack:[[b_videoAsset tracksWithMediaType:AVMediaTypeVideo] objectAtIndex:0] atTime:nextClipStartTime error:nil];



 AVAssetExportSession* _assetExport = [[AVAssetExportSession alloc] initWithAsset:mixComposition presetName:AVAssetExportPresetLowQuality];   
 _assetExport.outputFileType = @"com.apple.quicktime-movie";
 _assetExport.outputURL = outputFileUrl;

 [_assetExport exportAsynchronouslyWithCompletionHandler:
  ^(void ) {
   [self saveVideoToAlbum:outputFilePath]; 
  }       
  ];

}


- (void) saveVideoToAlbum:(NSString*)path{
 if(UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(path)){
  UISaveVideoAtPathToSavedPhotosAlbum (path, self, @selector(video:didFinishSavingWithError: contextInfo:), nil);
 }
}

- (void) video: (NSString *) videoPath didFinishSavingWithError: (NSError *) error contextInfo: (void *) contextInfo {
 NSLog(@"Finished saving video with error: %@", error);
} 

我已经发布了整个代码,因为它可能对其他人有所帮助。

不应该

nextClipStartTime = CMTimeAdd(nextClipStartTime, a_timeRange.duration);

[b_compositionVideoTrack insertTimeRange:b_timeRange ofTrack:[[b_videoAsset tracksWithMediaType:AVMediaTypeVideo] objectAtIndex:0] atTime:nextClipStartTime error:nil];

将第二个视频添加到第一个视频的末尾

干杯

4

2 回答 2

3

弄清楚了。应该只有一个 AVMutableCompositionTrack。

像这样:

CMTime nextClipStartTime = kCMTimeZero;

    AVURLAsset* a_videoAsset = [[AVURLAsset alloc]initWithURL:a_inputFileUrl options:nil];
    CMTimeRange a_timeRange = CMTimeRangeMake(kCMTimeZero,a_videoAsset.duration);
    AVMutableCompositionTrack *a_compositionVideoTrack = [mixComposition addMutableTrackWithMediaType:AVMediaTypeVideo preferredTrackID:kCMPersistentTrackID_Invalid];
    [a_compositionVideoTrack insertTimeRange:a_timeRange ofTrack:[[a_videoAsset tracksWithMediaType:AVMediaTypeVideo] objectAtIndex:0] atTime:nextClipStartTime error:nil];

    nextClipStartTime = CMTimeAdd(nextClipStartTime, a_timeRange.duration);

    AVURLAsset* b_videoAsset = [[AVURLAsset alloc]initWithURL:b_inputFileUrl options:nil];
    CMTimeRange b_timeRange = CMTimeRangeMake(kCMTimeZero, b_videoAsset.duration);
    [a_compositionVideoTrack insertTimeRange:b_timeRange ofTrack:[[b_videoAsset tracksWithMediaType:AVMediaTypeVideo] objectAtIndex:0] atTime:nextClipStartTime error:nil];
于 2010-10-14T19:52:42.557 回答
1

我还没有发现这个缺陷,但我确实有几个建议:

首先,在 insertTimeRange 和其他所有机会中捕获错误并进行检查。

其次,对于附加视频的简单情况,您可以使用 AVMutableComposition 而不需要太多的跟踪。将“insertTimeRange:ofAsset:atTime:error:”与从文件初始化的 AVAsset 一起使用,您将大大简化代码。如果您需要做一些更复杂的事情,例如交叉淡入淡出,您还需要使用视频合成和音频混合,此时您可以处理轨道的复杂性。

于 2010-10-14T19:55:10.103 回答