0

ビデオにテキストを追加しようとしていますが、何をしても無効な構成エラー (-11841) が発生します。私はチュートリアルに従い、スレッドを読みましたが、間違っていることは何もありません。3 つのビデオと 1 つのオーディオ トラックを組み合わせていますが、うまくいきます。最初のビデオ クリップ (videoStartAsset) の長さのテキストを追加しようとしています。

私が使用しているコードは次のとおりです。

   var mainInstruction = AVMutableVideoCompositionInstruction()
    mainInstruction.timeRange = CMTimeRange(start: kCMTimeZero, duration: videoStartTimeRange.duration)

    var videoLayerInstruction = AVMutableVideoCompositionLayerInstruction(assetTrack: videoCompositionTrack)
    var videoAssetTrack = videoStartAsset.tracksWithMediaType(AVMediaTypeVideo)[0] as AVAssetTrack

    videoLayerInstruction.setOpacity(0.0, atTime: videoStartTimeRange.duration)

    mainInstruction.layerInstructions = [videoLayerInstruction]

    var mainCompositionInst = AVMutableVideoComposition()
    var naturalSize = videoAssetTrack.naturalSize
    var renderWidth = naturalSize.width
    var renderHeight = naturalSize.height
    mainCompositionInst.renderScale = Float(UIScreen.mainScreen().scale)
    mainCompositionInst.renderSize = CGSize(width: 640.0, height: 480.0)
    mainCompositionInst.instructions = [mainInstruction]
    mainCompositionInst.frameDuration = CMTimeMake(1, 30)

    var nameTextLayer = CATextLayer()
    nameTextLayer.font = "FONT"
    nameTextLayer.fontSize = 100
    nameTextLayer.frame = CGRect(x: 0.0, y: 0.0, width: naturalSize.width, height: naturalSize.height)
    if let nameText = nameInputText?.label?.text {
        nameTextLayer.string = "TEXT"
    } else {
        nameTextLayer.string = "DEFAULT TEXT"
    }
    nameTextLayer.alignmentMode = kCAAlignmentCenter
    nameTextLayer.foregroundColor = UIColor.whiteColor().CGColor

    var overlayLayer = CALayer()
    overlayLayer.addSublayer(nameTextLayer)
    overlayLayer.frame = CGRect(x: 0.0, y: 0.0, width: naturalSize.width, height: naturalSize.height)
    overlayLayer.masksToBounds = true

    var parentLayer = CALayer()
    var videoLayer = CALayer()

    parentLayer.frame = CGRect(x: 0.0, y: 0.0, width: naturalSize.width, height: naturalSize.height)
    videoLayer.frame = CGRect(x: 0.0, y: 0.0, width: naturalSize.width, height: naturalSize.height)

    parentLayer.addSublayer(videoLayer)
    parentLayer.addSublayer(overlayLayer)

    mainCompositionInst.animationTool = AVVideoCompositionCoreAnimationTool(postProcessingAsVideoLayer: videoLayer, inLayer: parentLayer)

ありがとう。

4

2 に答える 2

0
AVErrorInvalidVideoComposition = -11841,

You attempted to perform a video composition operation that is not supported.

Available in iOS 5.0 and later.

AV Foundation エラーの詳細については、こちらを参照してください

于 2015-03-20T07:51:30.887 に答える