Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an AVMutableComposition that should combine video, audio and a CATextLayer for export to an mov file. When I don't include the CATextLayer in my AVAssetExportSession the video exports beautifully. However, when I add the code to include a CATextLayer on top of the video the resulting video shows the CATextlayer and a black background with music, but nothing from the video asset.

I've included my code below. I'm sure it's a subtle tweak that's necessary. Can anyone help? Thanks.

AVMutableComposition *composition = [AVMutableComposition composition];
    AVMutableCompositionTrack *compositionVideoTrack = [composition addMutableTrackWithMediaType:AVMediaTypeVideo preferredTrackID:kCMPersistentTrackID_Invalid];

    CMTime startTime = kCMTimeZero;
    CGAffineTransform rotationTransform = CGAffineTransformMakeRotation(M_PI_2);
    compositionVideoTrack.preferredTransform = rotationTransform;

    //for loop to combine clips into a single video
    for (NSInteger i=0; i < [self.moviePaths count]; i++) {
        NSString *path = [self.moviePaths objectAtIndex:i];
        NSLog(@"presumably adding an asset to the composition from this path: %@", path);

        NSURL *videoUrl = [[NSURL alloc] initFileURLWithPath:path];

        AVURLAsset *videoAsset = [AVURLAsset URLAssetWithURL:videoUrl options:options];


        AVAssetTrack *videoTrack = [[videoAsset tracksWithMediaType:AVMediaTypeVideo] objectAtIndex:0];


        //set the orientation
        if(i == 0)
        {
            [compositionVideoTrack setPreferredTransform:videoTrack.preferredTransform];
        }
        NSError *error = nil;
        BOOL success = [compositionVideoTrack insertTimeRange:CMTimeRangeMake(kCMTimeZero, videoAsset.duration) ofTrack:videoTrack atTime:startTime error:&error];
       //BOOL success= [composition insertTimeRange:CMTimeRangeMake(kCMTimeZero, videoAsset.duration) ofAsset:videoAsset atTime:startTime error:nil];
        NSLog(@"start time for video %i is %f", i, CMTimeGetSeconds(startTime));
        startTime = CMTimeAdd(startTime, videoAsset.duration);
        if (!success) {
            NSLog(@"Error inserting new track: %@",error);
            continue;
        }
    }
    AVURLAsset *audioAsset = [AVURLAsset URLAssetWithURL:audPathURL options:options]; 
    AVMutableCompositionTrack *audioTrack = [composition addMutableTrackWithMediaType:AVMediaTypeAudio preferredTrackID:kCMPersistentTrackID_Invalid];
    [audioTrack insertTimeRange:CMTimeRangeMake(kCMTimeZero, audioAsset.duration) ofTrack:[[audioAsset tracksWithMediaType:AVMediaTypeAudio] objectAtIndex:0] atTime:kCMTimeZero error:nil];

     CALayer *animatedTitleLayer = [CALayer layer];
    animatedTitleLayer.opaque = NO;
     CATextLayer *titleLayer = [[CATextLayer alloc] init];
     titleLayer.string = @"Rhymes";
     titleLayer.alignmentMode = kCAAlignmentCenter;
     titleLayer.bounds = CGRectMake(150, 50, 124, 354);
     titleLayer.position = CGPointMake(120, 270);
     titleLayer.bounds = CGRectIntegral(CGRectMake(0, 0, 250, 150));
     titleLayer.opacity = 1;
     titleLayer.backgroundColor = [UIColor purpleColor].CGColor;

     [animatedTitleLayer addSublayer:titleLayer];
     animatedTitleLayer.position = CGPointMake(40, 5);

     CALayer *parentLayer = [CALayer layer];
    parentLayer.opaque = NO;
     CALayer *videoLayer = [CALayer layer];
    videoLayer.opaque = NO;
     parentLayer.frame = CGRectMake(0, 0, 320, 480);
     videoLayer.frame = CGRectMake(150, 50, 124, 354);
     [parentLayer addSublayer:videoLayer];
     [parentLayer addSublayer:animatedTitleLayer];


     AVMutableVideoComposition *videoComposition;
     videoComposition = [AVMutableVideoComposition videoComposition];
     videoComposition.animationTool = [AVVideoCompositionCoreAnimationTool videoCompositionCoreAnimationToolWithPostProcessingAsVideoLayer:videoLayer inLayer:parentLayer];

     AVMutableVideoCompositionInstruction *passThroughInstruction = [AVMutableVideoCompositionInstruction videoCompositionInstruction];
     passThroughInstruction.timeRange = CMTimeRangeMake(kCMTimeZero, composition.duration);
     AVMutableVideoCompositionLayerInstruction *passThroughLayer = [AVMutableVideoCompositionLayerInstruction videoCompositionLayerInstructionWithAssetTrack:compositionVideoTrack];


     CGAffineTransform rotateTranslate = CGAffineTransformTranslate(rotationTransform,320,0);
     [passThroughLayer setTransform:rotateTranslate atTime:kCMTimeZero];


     passThroughInstruction.layerInstructions = [NSArray arrayWithObject:passThroughLayer];
     videoComposition.instructions = [NSArray arrayWithObject:passThroughInstruction];

     videoComposition.frameDuration = CMTimeMake(1, 30);
     videoComposition.renderSize = CGSizeMake(320, 480);



    NSString *movieOutputFilePath = [docsDir stringByAppendingPathComponent:theBeatDataObject.movieOutputName];

    theBeatDataObject.exportSession = [[AVAssetExportSession alloc] initWithAsset:composition presetName:AVAssetExportPresetHighestQuality];
    theBeatDataObject.exportSession.videoComposition = videoComposition;

    NSURL *movieOutputFileURL = [NSURL fileURLWithPath:movieOutputFilePath]; 
    theBeatDataObject.exportSession.outputFileType = AVFileTypeQuickTimeMovie;
    theBeatDataObject.exportSession.outputURL = movieOutputFileURL;

    [theBeatDataObject.exportSession exportAsynchronouslyWithCompletionHandler:^{
        switch ([theBeatDataObject.exportSession status]) {
            case AVAssetExportSessionStatusFailed:
                NSLog(@"Export failed: %@", [theBeatDataObject.exportSession error]);
                break;
            case AVAssetExportSessionStatusCancelled:
                NSLog(@"Export canceled");
                break;
            case AVAssetExportSessionStatusCompleted:
            {
                NSLog(@"Export done");
                break;
            }
        }
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.