複数の効果音を連結してファイルに保存して再生するiphone向けのアプリを作成しています。
Xcode11,swift4.3,AVFoudation,Simulator iPhonePro11で作成
iOSのシミュレーターでアプリを実行した後に、予め実装している3秒程度の複数のWAV形式のファイルを連結した後にファイル保存する段階で下記のエラーが発生します。
Error Domain=AVFoundationErrorDomain Code=-11838 "Operation Stopped" UserInfo={NSLocalizedFailureReason=The operation is not supported for this media., NSLocalizedDescription=Operation Stopped, NSUnderlyingError=0x60000047dce0 {Error Domain=NSOSStatusErrorDomain Code=-16976 "(null)"}})
重要なのがWAVファイルによってエラーが発生しない場合があります。
またWAVファイルをアプリで切り張りしてWAV形式で保存したものは
完全にエラーになります。
どうにか解決したいです。
よろしくお願いします。
下記は実際のコード
func concat() {
let start_Url = Bundle.main.url(forResource: "1", withExtension: "wav") var audioFileURLs = [start_Url] audioFileURLs += [Bundle.main.url(forResource: "2",withExtension: "wav")] audioFileURLs += [Bundle.main.url(forResource: "3",withExtension: "wav")] var nextSoundStartTime = CMTime.zero //let audioFileURLs = [fileA_Url, fileB_Url, fileC_Url] //var nextStartTime = CMTime.zero let composition = AVMutableComposition() let track = composition.addMutableTrack(withMediaType: AVMediaType.audio, preferredTrackID: kCMPersistentTrackID_Invalid) // 結合するファイル毎に、timerangeを作りtrackにinsertする for url in audioFileURLs { let asset = AVURLAsset(url: url! as URL) if let assetTrack = asset.tracks(withMediaType: AVMediaType.audio).first { let timeRange = CMTimeRange(start: CMTime.zero, duration: asset.duration) do { try track!.insertTimeRange(timeRange, of: assetTrack, at: nextSoundStartTime) nextSoundStartTime = CMTimeAdd(nextSoundStartTime, timeRange.duration) } catch { print("結合処理エラー: (error)") } } } let documentsURL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).last! let concatFileSaveURL = documentsURL.appendingPathComponent("fileName1.caf") if FileManager.default.fileExists(atPath: concatFileSaveURL.path) { print("既存ファイルが見つかりました") do { try FileManager.default.removeItem( atPath: concatFileSaveURL.path) print("既存ファイルを削除しました") } catch { print("削除できなかった -> (error)") } } else { print("見つかりません") }
//ここの下の処理でエラーが発生します。
if let exportSession = AVAssetExportSession(asset: composition, presetName: AVAssetExportPresetPassthrough) {
exportSession.outputFileType = AVFileType.caf exportSession.outputURL = concatFileSaveURL as URL exportSession.exportAsynchronously(completionHandler: { switch exportSession.status { case .completed: print("ファイル保存が成功しました ") case .failed, .cancelled: print("ファイル保存が失敗しました1 = (String(describing: exportSession.error))") default: print("ファイル保存が失敗しました2 = (String(describing: exportSession.error))") } }) } }
あなたの回答
tips
プレビュー