AVFoundation教程:给视频添加边框、水印、动画以及3D效果

本文内容来自raywenderlich的这篇文章的翻译:AVFoundation Tutorial: Adding Overlays and Animations to Videos

在AVVideoCompositionCoreAnimationTool类-这是部分AVFoundation-是在为您的视频后处理阶段整合核心动画的主力。在此阶段,您可以在输出视频中添加叠加层,背景和动画。

在顶层,AVVideoCompositionCoreAnimationTool有一个父CALayer对象,可以有任意数量的子CALayer对象。它有点像具有多个子视图的顶级视图。移动这些图层的顺序意味着您可以叠加视频效果,例如在视频下方显示背景,或在顶部放置叠加层。

下图说明了这个概念:

AVFoundation教程:给视频添加边框、水印、动画以及3D效果_第1张图片
由于动画序列可以添加到CALayer对象中,因此您将使用此策略为视频添加动画。

你可以看到videoLayer这个东西,其实这个layer就是负责显示我们的视频,和他同级的是一个叫animationLayer的东西,我们能够掌控并且玩出花样的其实是这个叫animationLayer的东西,因为这个animationLayer可以由我们自己创建。

第一节:给视频添加边框

今天第一节先讲解如何为一个视频添加边框和动画,首先说明的是,这种边框和动画并不能直接修改视频的某一帧给他增加边框或者产生动画效果,这种动画更像是给视频的上面加一个calayer,然后控制这个layer产生动画效果。因为具体到某一帧的这种操作不是iphone应该做的他也做不到。

AVFoundation教程:给视频添加边框、水印、动画以及3D效果_第2张图片
给视频添加边框的原理

这是原文中添加边框的效果。大家可以思考下原理是什么?

其实很简单,和我们videoLayer同级别的layer叫animationLayer(就是上图的background),他们共同有个父类叫做parentLayer,那么增加边框无非是把animationLayer这个layer找个边框的图片,然后把他放到videoLayer的下面,然后把videoLayer(crop也就是裁剪)的尺寸控制到刚好能显示animationLayer的四边,这样,不就成了带边框的效果么。

我找了一张带边框的图片。

AVFoundation教程:给视频添加边框、水印、动画以及3D效果_第3张图片
带边框的图片

我们这时候创建一个CALayer,然后呢把这个layer的内容设置为图片内容。内容如下:

CALayer *backgroundLayer = [CALayer layer];
[backgroundLayer setContents:(id)[borderImage CGImage]];
backgroundLayer.frame = CGRectMake(0, 0, size.width, size.height);
[backgroundLayer setMasksToBounds:YES];

我们创建好了背景layer,那么需要创建videoLayer了,这时候设置calayer的frame需要注意,这时候你为了让videoLayer能够显示background layer的四边,所以需要这么设置。

CALayer *videoLayer = [CALayer layer];
videoLayer.frame = CGRectMake(_widthBar.value, _widthBar.value,
                            size.width-(_widthBar.value*2), size.height-(_widthBar.value*2)); 

_widthBar.value就是我们边框的宽度,所以这句话的意思就是设置videoLayer的frame使其能够正确显示background layer的四边。

这时候,我们设置好了背景layer和videolayer那么怎么让系统知道,从而在编辑video的时候用到这些设置呢。需要使用这个方法。

[parentLayer addSublayer:backgroundLayer];
   [parentLayer addSublayer:videoLayer];
  composition.animationTool = [AVVideoCompositionCoreAnimationTool videoCompositionCoreAnimationToolWithPostProcessingAsVideoLayer:videoLayer inLayer:parentLayer];

这里的composition就是AVMutableVideoComposition,这里主要是告诉系统我们的layer层是parentLayer,在parentLayer里负责video显示的是我们的videoLayer。

其实你看到这里可以打开demo,找到这个类,然后修改一下parentLayer添加backgroundLayer和videoLayer的顺序,看看是什么情况。或者自己找几张图片,创建几个layer,把calayer的内容设置为图片,然后加到parentLayer里,看看有什么变化,总之需要自己多尝试。


AVFoundation教程:给视频添加边框、水印、动画以及3D效果_第4张图片
这种又是怎么做的呢?自己思考下。

第二节,如何给视频添加水印

其实看完第一部分,添加水印的步骤已经呼之欲出,无非就是把我们自己建的水印放在一个layer上,然后把这个layer添加到videolayer的上面不就行了么。代码如下,注意注释内容。

// 1 - 这个layer就是用来显示水印的。
CATextLayer *subtitle1Text = [[CATextLayer alloc] init];
[subtitle1Text setFont:@"Helvetica-Bold"];
[subtitle1Text setFontSize:36];
[subtitle1Text setFrame:CGRectMake(0, 0, size.width, 100)];
[subtitle1Text setString:_subTitle1.text];
[subtitle1Text setAlignmentMode:kCAAlignmentCenter];
[subtitle1Text setForegroundColor:[[UIColor whiteColor] CGColor]];
// 2 - The usual overlay
CALayer *overlayLayer = [CALayer layer];
[overlayLayer addSublayer:subtitle1Text];
overlayLayer.frame = CGRectMake(0, 0, size.width, size.height);
[overlayLayer setMasksToBounds:YES];
CALayer *parentLayer = [CALayer layer];
CALayer *videoLayer = [CALayer layer];
parentLayer.frame = CGRectMake(0, 0, size.width, size.height);
videoLayer.frame = CGRectMake(0, 0, size.width, size.height);
// 这里看出区别了吧,我们把overlayLayer放在了videolayer的上面,所以水印总是显示在视频之上的。
[parentLayer addSublayer:videoLayer];
[parentLayer addSublayer:overlayLayer];
composition.animationTool = [AVVideoCompositionCoreAnimationTool videoCompositionCoreAnimationToolWithPostProcessingAsVideoLayer:videoLayer inLayer:parentLayer];

再次,这应该看起来非常熟悉!但是,为了完整,这里是步骤的简要说明:

  1. CATextLayer顾名思义,它是CALayer专门为文本布局和渲染设计的子类。您可以在此处设置各种字幕属性,如字体,大小,文本和位置。
  2. 现在应该熟悉该方法的其余部分:设置叠加层,设置父层,然后最终用于AVVideoCompositionCoreAnimationTool进行合成。
水印内容

第三节:如何给视频添加动画

  // 1
  UIImage *animationImage = [UIImage imageNamed:@"star.png"];;
  CALayer *overlayLayer1 = [CALayer layer];
  [overlayLayer1 setContents:(id)[animationImage CGImage]];
  overlayLayer1.frame = CGRectMake(size.width/2-64, size.height/2 + 200, 128, 128);
  [overlayLayer1 setMasksToBounds:YES];

  CALayer *overlayLayer2 = [CALayer layer];
  [overlayLayer2 setContents:(id)[animationImage CGImage]];
  overlayLayer2.frame = CGRectMake(size.width/2-64, size.height/2 - 200, 128, 128);
  [overlayLayer2 setMasksToBounds:YES];

  // 2 - Rotate
  if (_animationSelectSegment.selectedSegmentIndex == 0) {
    CABasicAnimation *animation =
    [CABasicAnimation animationWithKeyPath:@"transform.rotation"];
    animation.duration=2.0;
    animation.repeatCount=5;
    animation.autoreverses=YES;
    // rotate from 0 to 360
    animation.fromValue=[NSNumber numberWithFloat:0.0];
    animation.toValue=[NSNumber numberWithFloat:(2.0 * M_PI)];
    animation.beginTime = AVCoreAnimationBeginTimeAtZero;
    [overlayLayer1 addAnimation:animation forKey:@"rotation"];

    animation = [CABasicAnimation animationWithKeyPath:@"transform.rotation"];
    animation.duration=2.0;
    animation.repeatCount=5;
    animation.autoreverses=YES;
    // rotate from 0 to 360
    animation.fromValue=[NSNumber numberWithFloat:0.0];
    animation.toValue=[NSNumber numberWithFloat:(2.0 * M_PI)];
    animation.beginTime = AVCoreAnimationBeginTimeAtZero;
    [overlayLayer2 addAnimation:animation forKey:@"rotation"];

  // 3 - Fade
  } else if(_animationSelectSegment.selectedSegmentIndex == 1) {
    CABasicAnimation *animation
    =[CABasicAnimation animationWithKeyPath:@"opacity"];
    animation.duration=3.0;
    animation.repeatCount=5;
    animation.autoreverses=YES;
    // animate from fully visible to invisible
    animation.fromValue=[NSNumber numberWithFloat:1.0];
    animation.toValue=[NSNumber numberWithFloat:0.0];
    animation.beginTime = AVCoreAnimationBeginTimeAtZero;
    [overlayLayer1 addAnimation:animation forKey:@"animateOpacity"];

    animation=[CABasicAnimation animationWithKeyPath:@"opacity"];
    animation.duration=3.0;
    animation.repeatCount=5;
    animation.autoreverses=YES;
    // animate from invisible to fully visible
    animation.fromValue=[NSNumber numberWithFloat:1.0];
    animation.toValue=[NSNumber numberWithFloat:0.0];
    animation.beginTime = AVCoreAnimationBeginTimeAtZero;
    [overlayLayer2 addAnimation:animation forKey:@"animateOpacity"];

  // 4 - Twinkle
  } else if(_animationSelectSegment.selectedSegmentIndex == 2) {
    CABasicAnimation *animation =
    [CABasicAnimation animationWithKeyPath:@"transform.scale"];
    animation.duration=0.5;
    animation.repeatCount=10;
    animation.autoreverses=YES;
    // animate from half size to full size
    animation.fromValue=[NSNumber numberWithFloat:0.5];
    animation.toValue=[NSNumber numberWithFloat:1.0];
    animation.beginTime = AVCoreAnimationBeginTimeAtZero;
    [overlayLayer1 addAnimation:animation forKey:@"scale"];

    animation = [CABasicAnimation animationWithKeyPath:@"transform.scale"];
    animation.duration=1.0;
    animation.repeatCount=5;
    animation.autoreverses=YES;
    // animate from half size to full size
    animation.fromValue=[NSNumber numberWithFloat:0.5];
    animation.toValue=[NSNumber numberWithFloat:1.0];
    animation.beginTime = AVCoreAnimationBeginTimeAtZero;
    [overlayLayer2 addAnimation:animation forKey:@"scale"];
  }

  // 5
  CALayer *parentLayer = [CALayer layer];
  CALayer *videoLayer = [CALayer layer];
  parentLayer.frame = CGRectMake(0, 0, size.width, size.height);
  videoLayer.frame = CGRectMake(0, 0, size.width, size.height);
  [parentLayer addSublayer:videoLayer];
  [parentLayer addSublayer:overlayLayer1];
  [parentLayer addSublayer:overlayLayer2];

  composition.animationTool = [AVVideoCompositionCoreAnimationTool
                               videoCompositionCoreAnimationToolWithPostProcessingAsVideoLayer:videoLayer inLayer:parentLayer];
}


动画效果

第四节:如何给我们的视频layer做出3D效果

3D效果

上面的所有效果都是在我们的animatinLayer上做文章的,要知道videoLayer他本质上也是个CALayer,那么其实普通layer能做的事他也一样能做。代码如下:

    // 1 - Layer setup
    CALayer *parentLayer = [CALayer layer];
    CALayer *videoLayer = [CALayer layer];
    
    parentLayer.frame = CGRectMake(0, 0, size.width, size.height);
    videoLayer.frame = CGRectMake(0, 0, size.width, size.height);
    [parentLayer addSublayer:videoLayer];
    
    // 2 - Set up the transform
    CATransform3D identityTransform = CATransform3DIdentity;

    // 3 - Pick the direction
    if (_tiltSegment.selectedSegmentIndex == 0) {
        identityTransform.m34 = 1.0 / 1000; // greater the denominator lesser will be the transformation
    } else if (_tiltSegment.selectedSegmentIndex == 1) {
        identityTransform.m34 = 1.0 / -1000; // lesser the denominator lesser will be the transformation
    }

    // 4 - Rotate
    videoLayer.transform = CATransform3DRotate(identityTransform, M_PI/6.0, 1.0f, 0.0f, 0.0f);
    
    // 5 - Composition
    composition.animationTool = [AVVideoCompositionCoreAnimationTool
                                 videoCompositionCoreAnimationToolWithPostProcessingAsVideoLayer:videoLayer inLayer:parentLayer];

上面的代码很容易懂,就是给我们的video层做rotation,其实你可以改改demo里的数据,试试makescalemaketranslate之类的transform。

第五节:然后去哪儿?

这是包含上述AVFoundation教程中所有代码的最终项目。

你可能感兴趣的:(AVFoundation教程:给视频添加边框、水印、动画以及3D效果)