Зеркальное отображение видео с фронтальной камеры в iOS - PullRequest
0 голосов
/ 16 декабря 2018

Я работаю над добавлением видеозаписи в приложение, используя AVFoundation.Мне удалось записать видео и затем отобразить его, но потом я понял, что (в отличие от предварительного просмотра) видео с фронтальной камеры не отражаются вдоль вертикальной оси.Кажется, что это стандартное поведение, но я бы хотел, чтобы видео выглядело как превью.Я верю, что CGAffineTransform может сделать это, но я не уверен, как применить это к видео.

Это то, что у меня было до сих пор:

extension CameraViewController: AVCaptureFileOutputRecordingDelegate {
    func fileOutput(_ output: AVCaptureFileOutput, didFinishRecordingTo outputFileURL: URL, from connections: [AVCaptureConnection], error: Error?) {
        guard error != nil else {
            print("Error recording movie: \(error!.localizedDescription)")
            return
        }

        if self.currentCameraPosition == .front {
            mirrorVideo(outputFileURL)
        }
        performSegue(withIdentifier: "ShowVideo", sender: outputFileURL)
    }

    func mirrorVideo(_ outputFileURL: URL){
        var transform: CGAffineTransform = CGAffineTransform(scaleX: -1.0, y: 1.0)
        transform = transform.rotated(by: CGFloat(Double.pi/2))
        // Apply transform
    }
}

1 Ответ

0 голосов
/ 16 декабря 2018

На основании полученного ответа и некоторой игры я получил ответ:

extension CameraViewController: AVCaptureFileOutputRecordingDelegate {
    func fileOutput(_ output: AVCaptureFileOutput, didFinishRecordingTo outputFileURL: URL, from connections: [AVCaptureConnection], error: Error?) {
        if error != nil {
            print("Error recording movie: \(error!.localizedDescription)")
        } else {
            processMovie()
        }
    }

    func processMovie() {
        let asset = AVAsset(url: CameraViewController.movieURL)
        let composition = AVMutableComposition()
        let assetVideoTrack = asset.tracks(withMediaType: .video).last!
        let compositionVideoTrack = composition.addMutableTrack(withMediaType: AVMediaType.video,
                                                                preferredTrackID: CMPersistentTrackID(kCMPersistentTrackID_Invalid))
        try? compositionVideoTrack?.insertTimeRange(CMTimeRangeMake(start: CMTime.zero, duration: asset.duration),
                                                    of: assetVideoTrack,
                                                    at: CMTime.zero)
        if self.currentCameraPosition == .rear {
            compositionVideoTrack?.preferredTransform = assetVideoTrack.preferredTransform
        }
        if self.currentCameraPosition == .front {
            compositionVideoTrack?.preferredTransform = CGAffineTransform(scaleX: -1.0, y: 1.0).rotated(by: CGFloat(Double.pi/2))
        }

        if let exporter = AVAssetExportSession(asset: composition,
                                               presetName: AVAssetExportPresetHighestQuality) {
            exporter.outputURL = CameraViewController.exportMovieURL
            exporter.outputFileType = AVFileType.mov
            exporter.shouldOptimizeForNetworkUse = true
            exporter.exportAsynchronously() {
                DispatchQueue.main.async {
                    self.performSegue(withIdentifier: "ShowVideo", sender: nil)
                }
            }
        }
    }
}
...