0

我正在尝试为不同的 CALayers 设置动画,但只有最后一个动画有效。

我这样做是为了创建不同的 CALayers,其中包含文本并为每个 CALayers 添加动画。这是生成 CALayers 的代码:

    // Create a layer for the title
    CALayer *_watermarkLayer = [CALayer layer];
    [_watermarkLayer setOpacity:0];

    // Create a layer for the text of the title.
    CATextLayer *titleLayer = [CATextLayer layer];
    titleLayer.string = text;
    titleLayer.foregroundColor = [color CGColor];
    titleLayer.shadowOpacity = 0.5;
    titleLayer.alignmentMode = kCAAlignmentCenter;
    titleLayer.bounds = CGRectMake(0, 0, videoSize.width/2, videoSize.height/2); 
    [_watermarkLayer addSublayer:titleLayer];

    // Fade in/out animation
    NSString* aux = [NSString stringWithFormat:@"%d", seconds];
    CABasicAnimation *fadeAnimation = [CABasicAnimation animationWithKeyPath:@"opacity"];
    fadeAnimation.fromValue = [NSNumber numberWithFloat:1.0];
    fadeAnimation.toValue = [NSNumber numberWithFloat:0.0];
    fadeAnimation.additive = YES;
    fadeAnimation.removedOnCompletion = YES;
    fadeAnimation.beginTime = seconds;
    fadeAnimation.duration = 2.0;
    fadeAnimation.fillMode = kCAFillModeRemoved; 
    [_watermarkLayer addAnimation:fadeAnimation forKey:[@"animateOpacity" stringByAppendingString:aux]];

我正在使用从上述代码中获得的 CALayer,如下所示:

- (void) addWatermarkWithVideoComposition:(AVMutableVideoComposition*)videoComposition withLabel:(NSString*)text andColor:(UIColor*)color andBeginTimeInSeconds:(int)seconds
{
    // Setup video layers
    CALayer *parentLayer = [CALayer layer];
    CALayer *videoLayer = [CALayer layer];
    parentLayer.frame = CGRectMake(0, 0, videoComposition.renderSize.width, videoComposition.renderSize.height);
    videoLayer.frame = CGRectMake(0, 0, videoComposition.renderSize.width, videoComposition.renderSize.height);
    [parentLayer addSublayer:videoLayer];

    // Create and add watermark layer
    CALayer *exportWatermarkLayer = [self watermarkLayerForSize:CGSizeMake(300, 300) andText:text andColor:color andBeginTimeInSeconds:seconds];
    exportWatermarkLayer.position = CGPointMake(videoComposition.renderSize.width/2, videoComposition.renderSize.height/4);
    [parentLayer addSublayer:exportWatermarkLayer];

    // Merge layers
    videoComposition.animationTool = [AVVideoCompositionCoreAnimationTool videoCompositionCoreAnimationToolWithPostProcessingAsVideoLayer:videoLayer inLayer:parentLayer];
}

用法:

AVMutableVideoComposition *videoComposition = [AVMutableVideoComposition videoComposition];
    videoComposition.instructions = instructions;
    videoComposition.renderSize = outputSize;
    videoComposition.frameDuration = CMTimeMake(1, 30);

    [self addWatermarkWithVideoComposition:videoComposition withLabel:@"Tag" andColor:lastColor andBeginTimeInSeconds:0];
    [self addWatermarkWithVideoComposition:videoComposition withLabel:@"Tag" andColor:lastColor andBeginTimeInSeconds:3];
    [self addWatermarkWithVideoComposition:videoComposition withLabel:@"Tag" andColor:lastColor andBeginTimeInSeconds:5];

AVAssetExportSession *exporter = [AVAssetExportSession exportSessionWithAsset:composition presetName:preset];
....................

我究竟做错了什么?

4

2 回答 2

0

据我所知,您的代码中有三个问题。你可能想要:

  1. 更改fadeAnimation.removedOnCompletion = YES;... = NO;

  2. 更改fadeAnimation.fillMode = xyz;... = kCAFillModeForwards;

  3. .beginTime要使用当前拥有的 AVVideoCompositionCoreAnimationTool 导出的所有 CALayers 和所有 CAAnimation beginTime == 0.0(这是默认值!!)更改为 AVCoreAnimationBeginTimeAtZero.

有关这方面的更多详细信息,请参阅 Apple 的AVVideoCompositionCoreAnimationTool文档。

在CAMediaTiming协议beginTime中的 beginTime 属性的 Apples 文档中也没有提到该提示,这并不好。

我有一个类似的问题,只有那些动画有效,我明确设置了一个(非零)beginTime。希望这也是您问题的解决方案。

于 2013-11-19T18:05:10.233 回答
0

我使用以下代码在视频中心创建水印CALayer,它在 osx 上工作Cocoa。希望它会有所帮助。

- (CALayer *)createLayerImage:(NSString *)imagePath videoSize:(CGSize)videoSize
{
    CALayer *watermarkLayer = [CALayer layer];
    NSImage *watermarkImage = [[NSImage alloc] initWithContentsOfFile:imagePath];
    [watermarkLayer setContents:watermarkImage];
    [watermarkLayer setFrame:CGRectMake((videoSize.width-watermarkImage.size.width)/2,
                                        (videoSize.height-watermarkImage.size.height)/2,
                                        watermarkImage.size.width,
                                        watermarkImage.size.height)];
    NSLog(@"watermark layer %fx%f", watermarkImage.size.width, watermarkImage.size.height);
    CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"opacity"];
    animation.fromValue = [NSNumber numberWithFloat:1.0];
    animation.toValue = [NSNumber numberWithFloat:1.0];
    animation.removedOnCompletion = NO;
    animation.duration = 5.0;
    animation.repeatCount = 1;
    animation.beginTime = AVCoreAnimationBeginTimeAtZero;
    animation.fillMode = kCAFillModeForwards;
    [watermarkLayer addAnimation:animation forKey:@"opacity"];

    return watermarkLayer;
}
于 2017-04-23T11:37:44.950 回答