简体   繁体   English

通过 AVAssetExportSession 导出 mp4 失败

[英]Exporting mp4 through AVAssetExportSession fails

I start saying that I spent a lot of time searching through documentation, posts here and somewhere else, but I can't figure out the solution for this problem.我开始说我花了很多时间搜索文档、此处和其他地方的帖子,但我无法找到解决此问题的方法。

I'm using AVAssetExportSession for exporting an .mp4 file stored in a AVAsset instance.我正在使用AVAssetExportSession导出存储在AVAsset实例中的.mp4文件。 What I do is:我要做的是:

  • I check the isExportable property of AVAsset我检查isExportable财产AVAsset
  • I then get an array of exportPresets compatible with the AVAsset instance然后我得到的数组exportPresets与兼容AVAsset实例
  • I take the AVAssetExportPreset1920x1080 , or, if not existing I try to export the media with AVAssetExportPresetPassthrough (FYI, 100% of times, the preset I need is always contained in the list, but I tried also the passthrough option and it doesn't work anyway)我使用AVAssetExportPreset1920x1080 ,或者,如果不存在,我尝试使用AVAssetExportPresetPassthrough导出媒体(仅供参考,100% 的情况下,我需要的预设始终包含在列表中,但我也尝试了 passthrough 选项,但它不起作用反正)

The outputFileType is AVFileTypeMPEG4 and I tried also by assigning the .mp4 extension to the file, but nothing makes it work. outputFileTypeAVFileTypeMPEG4 ,我也尝试通过将.mp4扩展名分配给文件,但没有任何效果。 I always receive this error我总是收到这个错误

Error Domain=AVFoundationErrorDomain Code=-11838 "Operation Stopped" UserInfo={NSUnderlyingError=0x600000658c30 {Error Domain=NSOSStatusErrorDomain Code=-12109 "(null)"}, NSLocalizedFailureReason=The operation is not supported for this media., NSLocalizedDescription=Operation Stopped}错误域=AVFoundationErrorDomain Code=-11838 “操作停止” UserInfo={NSUnderlyingError=0x600000658c30 {Error Domain=NSOSStatusErrorDomain Code=-12109 “(null)”}, NSLocalizedFailureReason=该媒体不支持该操作。, NSOperation StoppedDescription }

Below is the code I'm using下面是我正在使用的代码

func _getDataFor(_ item: AVPlayerItem, completion: @escaping (Data?) -> ()) {
    guard item.asset.isExportable else {
        completion(nil)
        return
    }

    let compatiblePresets = AVAssetExportSession.exportPresets(compatibleWith: item.asset)
    var preset: String = AVAssetExportPresetPassthrough
    if compatiblePresets.contains(AVAssetExportPreset1920x1080) { preset = AVAssetExportPreset1920x1080 }

    guard
        let exportSession = AVAssetExportSession(asset: item.asset, presetName: preset),
        exportSession.supportedFileTypes.contains(AVFileTypeMPEG4) else {
        completion(nil)
        return
    }

    var tempFileUrl = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0].appendingPathComponent("temp_video_data.mp4", isDirectory: false)
    tempFileUrl = URL(fileURLWithPath: tempFileUrl.path)

    exportSession.outputURL = tempFileUrl
    exportSession.outputFileType = AVFileTypeMPEG4
    let startTime = CMTimeMake(0, 1)
    let timeRange = CMTimeRangeMake(startTime, item.duration)
    exportSession.timeRange = timeRange

    exportSession.exportAsynchronously {
        print("\(exportSession.error)")
        let data = try? Data(contentsOf: tempFileUrl)
        _ = try? FileManager.default.removeItem(at: tempFileUrl)
        completion(data)
    }
}

Seems like converting the AVAsset instance in a AVMutableComposition did the trick.似乎在AVAsset中转换AVAsset实例AVMutableComposition成功了。 If, please, anyone knows the reason why this works let me know.如果有人知道这个工作的原因,请告诉我。

This is the new _getDataFor(_:completion:) method implementation这是新的_getDataFor(_:completion:)方法实现

func _getDataFor(_ item: AVPlayerItem, completion: @escaping (Data?) -> ()) {
    guard item.asset.isExportable else {
        completion(nil)
        return
    }

    let composition = AVMutableComposition()
    let compositionVideoTrack = composition.addMutableTrack(withMediaType: AVMediaTypeVideo, preferredTrackID: CMPersistentTrackID(kCMPersistentTrackID_Invalid))
    let compositionAudioTrack = composition.addMutableTrack(withMediaType: AVMediaTypeAudio, preferredTrackID: CMPersistentTrackID(kCMPersistentTrackID_Invalid))

    let sourceVideoTrack = item.asset.tracks(withMediaType: AVMediaTypeVideo).first!
    let sourceAudioTrack = item.asset.tracks(withMediaType: AVMediaTypeAudio).first!
    do {
        try compositionVideoTrack.insertTimeRange(CMTimeRangeMake(kCMTimeZero, item.duration), of: sourceVideoTrack, at: kCMTimeZero)
        try compositionAudioTrack.insertTimeRange(CMTimeRangeMake(kCMTimeZero, item.duration), of: sourceAudioTrack, at: kCMTimeZero)
    } catch(_) {
        completion(nil)
        return
    }

    let compatiblePresets = AVAssetExportSession.exportPresets(compatibleWith: composition)
    var preset: String = AVAssetExportPresetPassthrough
    if compatiblePresets.contains(AVAssetExportPreset1920x1080) { preset = AVAssetExportPreset1920x1080 }

    guard
        let exportSession = AVAssetExportSession(asset: composition, presetName: preset),
        exportSession.supportedFileTypes.contains(AVFileTypeMPEG4) else {
        completion(nil)
        return
    }

    var tempFileUrl = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0].appendingPathComponent("temp_video_data.mp4", isDirectory: false)
    tempFileUrl = URL(fileURLWithPath: tempFileUrl.path)

    exportSession.outputURL = tempFileUrl
    exportSession.outputFileType = AVFileTypeMPEG4
    let startTime = CMTimeMake(0, 1)
    let timeRange = CMTimeRangeMake(startTime, item.duration)
    exportSession.timeRange = timeRange

    exportSession.exportAsynchronously {
        print("\(tempFileUrl)")
        print("\(exportSession.error)")
        let data = try? Data(contentsOf: tempFileUrl)
        _ = try? FileManager.default.removeItem(at: tempFileUrl)
        completion(data)
    }
}

Check if you set delegate property for AVURLAsset correctly.检查您是否正确设置了 AVURLAsset 的委托属性。

[self.playerAsset.resourceLoader setDelegate:self queue:dispatch_get_main_queue()];

And conform to AVAssetResourceLoaderDelegate protocol.并符合 AVAssetResourceLoaderDelegate 协议。 That is all you need to do.这就是您需要做的所有事情。

I had this same issue because I was adding an audio track to a video without audio.我遇到了同样的问题,因为我在没有音频的视频中添加了音轨。 Removing the audio track fixed it.删除音轨修复了它。

Swift 5:斯威夫特 5:

import Foundation
import AVKit

func getDataFor(_ item: AVPlayerItem, completion: @escaping (Data?) -> ()) {
guard item.asset.isExportable else {
    completion(nil)
    return
}

let composition = AVMutableComposition()
let compositionVideoTrack = composition.addMutableTrack(withMediaType: .video, preferredTrackID: CMPersistentTrackID(kCMPersistentTrackID_Invalid))
let compositionAudioTrack = composition.addMutableTrack(withMediaType: .audio, preferredTrackID: CMPersistentTrackID(kCMPersistentTrackID_Invalid))

let sourceVideoTrack = item.asset.tracks(withMediaType: .video).first!
let sourceAudioTrack = item.asset.tracks(withMediaType: .audio).first!
do {
    try compositionVideoTrack?.insertTimeRange(CMTimeRangeMake(start: CMTime.zero, duration: item.duration), of: sourceVideoTrack, at: CMTime.zero)
    try compositionAudioTrack?.insertTimeRange(CMTimeRangeMake(start: CMTime.zero, duration: item.duration), of: sourceAudioTrack, at: CMTime.zero)
} catch(_) {
    completion(nil)
    return
}

let compatiblePresets = AVAssetExportSession.exportPresets(compatibleWith: composition)
var preset: String = AVAssetExportPresetPassthrough
if compatiblePresets.contains(AVAssetExportPreset1920x1080) { preset = AVAssetExportPreset1920x1080 }

guard
    let exportSession = AVAssetExportSession(asset: composition, presetName: preset),
    exportSession.supportedFileTypes.contains(.mp4) else {
    completion(nil)
    return
}

var tempFileUrl = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0].appendingPathComponent("temp_video_data.mp4", isDirectory: false)
tempFileUrl = URL(fileURLWithPath: tempFileUrl.path)

exportSession.outputURL = tempFileUrl
exportSession.outputFileType = .mp4
let startTime = CMTimeMake(value: 0, timescale: 1)
let timeRange = CMTimeRangeMake(start: startTime, duration: item.duration)
exportSession.timeRange = timeRange

exportSession.exportAsynchronously {
    print("\(tempFileUrl)")
    print("\(String(describing: exportSession.error))")
    let data = try? Data(contentsOf: tempFileUrl)
    _ = try? FileManager.default.removeItem(at: tempFileUrl)
    completion(data)
}
}

I ran into this problem because the Microphone permission was off/denied.我遇到了这个问题,因为Microphone权限被关闭/拒绝。 Once I set turned it on this error went away.一旦我设置打开它,这个错误就消失了。

I solved this problem by removing the CompositionTrack with media type .audio and empty segments from the AVMutableComposition我通过删除解决了这个问题CompositionTrack介质类型.audio和空segmentsAVMutableComposition

if let audioTrack = exportComposition.tracks(withMediaType: .audio).first,
    audioTrack.segments.isEmpty {
        exportComposition.removeTrack(audioTrack)
}

I had the same error, when I try to ExportSession with AVAssetExportPresetPassthrough always fail and in my case I can't use another preset because I must have the same resolution like at origin video我有同样的错误,当我尝试ExportSessionAVAssetExportPresetPassthrough总是失败,在我的情况下,我不能用另一个预设,因为我必须像在原点视频相同的分辨率

I fixed我解决了

let asset = AVAsset(url: originUrl)
let videoTrack = asset.tracks( withMediaType: .video ).first! as AVAssetTrack

let videoComposition = AVMutableVideoComposition()
videoComposition.renderSize = CGSize(
       width: videoTrack.naturalSize.width, 
       height: videoTrack.naturalSize.height
)
videoComposition.frameDuration = CMTime(
       value: 1, 
       timescale: videoTrack.naturalTimeScale
)
        
let transformer = AVMutableVideoCompositionLayerInstruction(
       assetTrack: videoTrack 
)
transformer.setOpacity(1.0, at: CMTime.zero)
        
let instruction = AVMutableVideoCompositionInstruction()
instruction.timeRange = timeRange
instruction.layerInstructions = [transformer]
videoComposition.instructions = [instruction]

guard let exportSession = AVAssetExportSession(
       asset: asset, 
       presetName: AVAssetExportPresetMediumQuality
) else {
       return handleFailure(error: .mediaSavingError, completion: completion)
}
        
exportSession.videoComposition = videoComposition
exportSession.outputURL = outputUrl
exportSession.outputFileType = .mp4
exportSession.timeRange = timeRange

exportSession.exportAsynchronously { [weak self] in 
    "your code"
}

Forks great for me, and it's saved the same resolution as video before Forks 对我来说很棒,它以前保存的分辨率与视频相同

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM