Я работаю над демонстрацией того, как добавить дополнительный звук тишины в конце данного аудиофайла.
здесь длина моего аудиофайла составляет 29 сек c. И я добавляю 11-ю c тишину. итоговая длина звука на выходе будет 40 se c.
Вот моя функция,
func addSilenceInAudio(inputFilePath:URL, silenceTime: Int, minimumAudioLength: Int, completionBlock:@escaping ((String?, Error?) -> Void)) {
let asset = AVURLAsset(url: inputFilePath, options: nil)
//get an original audio length
let endAudioTime = CMTimeMake(value: Int64(silenceTime), timescale: 1)
let composition = AVMutableComposition()
let insertAt = CMTimeRange(start: CMTime.zero , end: endAudioTime)
let assetTimeRange = CMTimeRange(start: CMTime.zero, end:asset.duration)
//here i'm inserting range
try! composition.insertTimeRange(assetTimeRange, of: asset, at: insertAt.end)
let exportSessionNew = AVAssetExportSession(asset: composition, presetName: AVAssetExportPresetAppleM4A)
exportSessionNew?.outputFileType = AVFileType.m4a
let documentURL = try! FileManager.default.url(for: .documentDirectory, in: .userDomainMask, appropriateFor: nil, create: true)
let dateString = (Date().millisecondsSince1970) //added file name here
let outputURL = documentURL.appendingPathComponent("\(dateString).m4a") //file name must be .m4a
exportSessionNew?.outputURL = outputURL //output url
exportSessionNew?.exportAsynchronously(completionHandler: {
() -> Void in
print(exportSessionNew as Any)
if exportSessionNew!.status == AVAssetExportSession.Status.completed {
// All is working fine!!
print(exportSessionNew?.outputURL as Any) //get outputfile
print("success")
completionBlock("\(String(describing: exportSessionNew?.outputURL))", nil)
} else {
print("failed")
completionBlock(nil, exportSessionNew?.error)
}
})
}
код выше работает нормально, и я получаю свой выходной звук с 40 se c.
но Проблема в 11-се c При добавлении аудио файла добавляется тишина.
это должно быть на конец аудиофайла.
Я что-то здесь не так делаю?