CGAffineTransform применяет дополнительное вращение - PullRequest
1 голос
/ 25 июня 2019

После выбора видео из галереи я пытаюсь повернуть его и сохранить в галерее.Когда я выбираю видео в альбомном режиме, мое вращение работает отлично.Но если я выберу видео в портретном режиме и попробую повернуть его на заданный угол.Видео получает дополнительную ротацию.

вот мой код:

        let currentAsset = AVAsset( url: outputFileURL)
        let composition = AVMutableComposition.init()

        let videoComposition = AVMutableVideoComposition()
        videoComposition.frameDuration = CMTimeMake(1, 30)
        videoComposition.renderScale  = 1.0

        let compositionCommentaryTrack: AVMutableCompositionTrack? = composition.addMutableTrack(withMediaType: AVMediaType.audio, preferredTrackID: kCMPersistentTrackID_Invalid)

        let compositionVideoTrack: AVMutableCompositionTrack? = composition.addMutableTrack(withMediaType: AVMediaType.video, preferredTrackID: kCMPersistentTrackID_Invalid)
        let videoDuration: CMTime = currentAsset.duration

        let clipVideoTrack:AVAssetTrack =  currentAsset.tracks(withMediaType: AVMediaType.video)[0]
        let audioTrack: AVAssetTrack = currentAsset.tracks(withMediaType: AVMediaType.audio)[0]

        try? compositionCommentaryTrack?.insertTimeRange(CMTimeRangeMake(kCMTimeZero, currentAsset.duration), of: audioTrack, at: kCMTimeZero)

        try? compositionVideoTrack?.insertTimeRange(CMTimeRangeMake(kCMTimeZero, currentAsset.duration ), of: clipVideoTrack, at: kCMTimeZero)
        var naturalSize = clipVideoTrack.naturalSize

        naturalSize = CGSize.init(width: naturalSize.width, height: naturalSize.height)
        videoComposition.renderSize = naturalSize
        let x = naturalSize.width
        let y = naturalSize.height

        let scale = CGFloat(1.0)
        let frontLayerInstruction = AVMutableVideoCompositionLayerInstruction(assetTrack: compositionVideoTrack!)
        var rotationTransform = CGAffineTransform(translationX: x/2, y: y/2)
        rotationTransform = rotationTransform.rotated(by: angle)
        rotationTransform = rotationTransform.translatedBy(x: -x/2, y: -y/2)

        frontLayerInstruction.setTransform(rotationTransform, at: kCMTimeZero)

// saving video in gallery

        let MainInstruction = AVMutableVideoCompositionInstruction()
        MainInstruction.timeRange = CMTimeRangeMake(kCMTimeZero, composition.duration)
        MainInstruction.layerInstructions = [frontLayerInstruction]
        videoComposition.instructions = [MainInstruction]
        let documentsPath = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true)[0]
        let videoPath = documentsPath+"/cropEditVideo.mov"

        let fileManager = FileManager.default

        if fileManager.fileExists(atPath: videoPath) {
            try! fileManager.removeItem(atPath: videoPath)
        }

        var exportSession = AVAssetExportSession.init(asset: composition, presetName: AVAssetExportPresetHighestQuality)
        exportSession?.outputFileType = AVFileType.mov
        exportSession?.videoComposition = videoComposition
        exportSession?.outputURL = URL.init(fileURLWithPath: videoPath)
        .
        .
        .
        .

Я не разместил полный код сохранения видео с помощью AVAssetExportSession, так как я считаю, что он не нужен.

Так что, если я применил к видео поворот на 10 градусов, он будет сохранен с поворотом на 280 градусов.Так что в основном это дополнение, и это происходит только с портретными видео.

Любая помощь будет высоко ценится.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...