2017-09-15 2 views
0

AVAssetExport를 사용하여 자산을 내보내려고하면 whatsapp를 통해받은 비디오에만 다음과 같은 오류가 발생합니다. 해결 방법을 찾을 수 없습니다. 비디오 길이를 수정하기위한 코드 구현도 시도했지만 해결하지는 못했습니다. 오류는 오류 도메인 = NSOSStatusErrorDomain 코드 = -12780 \ "(널) \"여기오류 도메인 = NSOSStatusErrorDomain 코드 = -12780 "(null) "

코드 여기

PHCachingImageManager().requestAVAsset(forVideo: asset.phAsset!, options: nil, resultHandler: { (AVAssetRecivied, audioMix, info) in 
       let AVAssetMy = AVAssetRecivied!.normalizingMediaDuration() 
       let exportSession : AVAssetExportSession? 
       if (AVAssetMy as? AVURLAsset) != nil { 
       exportSession = AVAssetExportSession(asset: (AVAssetMy as? AVURLAsset)!, presetName: AVAssetExportPresetMediumQuality) 
       } 
       else { 
       exportSession = AVAssetExportSession(asset: (AVAssetMy as? AVComposition)!, presetName: AVAssetExportPresetMediumQuality) 
       } 
       exportSession?.outputURL = URL(fileURLWithPath: NSTemporaryDirectory() + NSUUID().uuidString + ".m4v") 
       exportSession?.outputFileType = AVFileTypeQuickTimeMovie 
       exportSession?.audioMix = audioMix 
       exportSession?.shouldOptimizeForNetworkUse = true 
       exportSession?.exportAsynchronously {() -> Void in 
        if exportSession?.status == .completed { 
        self.getFileSize(url: exportSession!.outputURL!) 
        if self.myMediaArray == nil { 
         self.myMediaArray = [["Video" : AVAsset(url: exportSession!.outputURL!)]] 
         DispatchQueue.main.async { 
          self.collectionViewImage.reloadData() 
         } 
        } else { 
         self.myMediaArray?.append(["Video" : AVAsset(url: exportSession!.outputURL!)]) 
         DispatchQueue.main.async { 
          self.collectionViewImage.reloadData() 
         } 
        }} 
       } 
      }) 

비디오

func normalizingMediaDuration() -> AVAsset? { 
    let mixComposition : AVMutableComposition = AVMutableComposition() 
    var mutableCompositionVideoTrack : [AVMutableCompositionTrack] = [] 
    var mutableCompositionAudioTrack : [AVMutableCompositionTrack] = [] 
    let totalVideoCompositionInstruction : AVMutableVideoCompositionInstruction = AVMutableVideoCompositionInstruction() 

    guard let video = tracks(withMediaType: AVMediaTypeVideo).first else { 
     return nil 
    } 

    guard let audio = tracks(withMediaType: AVMediaTypeAudio).first else { 
     return nil 
    } 

    mutableCompositionVideoTrack.append(mixComposition.addMutableTrack(withMediaType: AVMediaTypeVideo, preferredTrackID: kCMPersistentTrackID_Invalid)) 
    mutableCompositionAudioTrack.append(mixComposition.addMutableTrack(withMediaType: AVMediaTypeAudio, preferredTrackID: kCMPersistentTrackID_Invalid)) 

    let duration = video.timeRange.duration.seconds > audio.timeRange.duration.seconds ? audio.timeRange.duration : video.timeRange.duration 

    do{ 
     try mutableCompositionVideoTrack[0].insertTimeRange(CMTimeRangeMake(kCMTimeZero,duration), of: video, at: kCMTimeZero) 
     try mutableCompositionAudioTrack[0].insertTimeRange(CMTimeRangeMake(kCMTimeZero, duration), of: audio, at: kCMTimeZero) 
    }catch{ 
     return nil 
    } 

    totalVideoCompositionInstruction.timeRange = CMTimeRangeMake(kCMTimeZero,duration) 

    return mixComposition 
} 

의 기간을 조정하는 방법 }

파일 : 1) 내보내기 가능 2) 사전 설정 및 형식은 호환 가능 3) 내보내기 전에 파일을 문서로 이동하려고했습니다. 4) 파일 확장자를 변경하려고했습니다.

+0

나는 tsi (사고) 만 사용하고 특정 비디오를 내보내는 것을 허용하지 않는 버그가 있다고보고되었습니다. 그들은 대안을 환영합니다! – darkbit

답변

0

동일한 문제가 발생하여 동일한 오류 코드 -12780이 표시됩니다. 나를 위해 고쳐야 할 유일한 것은 다음과 같습니다. exportSession? .outputURL NSURL 변수를 보내고 URL을 넣으십시오. 왜 작동했는지 잘 알지 못해서 도움이 되셨기를 바랍니다.

관련 문제