将AVAset压缩并编码为mp4

问题描述 投票:0回答:1

我正在尝试压缩AVAsset以降低质量,然后将其导出为mp4。输入资产可以是相机胶卷允许的任何类型的视频。

我遇到的问题是,当我尝试将资产导出到AVAssetExportPresetMediumQuality时,当输入最初是mp4文件时,它在第一个保护声明中失败。但是,如果我将其更改为AVAssetExportPresetPassthrough,则可以使用,但不会压缩文件。是否有一种方法来压缩/编码最初可能是.mov或.mp4的资产?

func encodeVideo(asset: AVAsset, completionHandler: @escaping (URL?, String?) -> ())  {
    guard let exportSession = AVAssetExportSession(asset: asset, presetName: AVAssetExportPresetPassthrough) else {
        completionHandler(nil, nil)
        return
    }
    let documentsDirectory = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0] as URL
    let filePath = documentsDirectory.appendingPathComponent("compressed-video.mp4")
    if FileManager.default.fileExists(atPath: filePath.path) {
        do {
            try FileManager.default.removeItem(at: filePath)
        } catch {
            completionHandler(nil, nil)
        }
    }
    exportSession.outputURL = filePath
    exportSession.outputFileType = .mp4
    exportSession.shouldOptimizeForNetworkUse = true
    let start = CMTimeMakeWithSeconds(0.0, preferredTimescale: 0)
    let range = CMTimeRangeMake(start: start, duration: asset.duration)
    exportSession.timeRange = range

    exportSession.exportAsynchronously {
        switch exportSession.status {
        case .failed:
            print("Conversion Failed")
            completionHandler(nil, exportSession.error?.localizedDescription)
        case .cancelled:
            print("Conversion Cancelled")
            completionHandler(nil, exportSession.error?.localizedDescription)
        case .completed:
            completionHandler(exportSession.outputURL, nil)
            default: break
        }
    }
}
ios swift avfoundation avkit
1个回答
0
投票

经过进一步的测试和研究,这似乎是模拟器(Xcode 11.1和iPhone 11 Pro模拟器,iOS 13.1)的问题/可能的错误。不知道这是否适用于其他模拟器,但是使用AVAssetExportPresetMediumQuality的上述代码在我的设备测试中起作用。

© www.soinside.com 2019 - 2024. All rights reserved.