AVAudioConverter.convertToBuffer 抛出错误代码-50

AVAudioConverter.convertToBuffer throwing error code -50

我需要将用 2 个音频通道录制的 .wav 文件转换为只有 1 个通道的 .wav 文件,并将位深度从 32 减少到 16。我一直在尝试使用 AVAudioConverter.convertToBuffer 但是,转换会引发错误:Error Domain=NSOSStatusErrorDomain Code=-50 "(null)"

基本上,唯一真正需要改变的是将音频剥离到单个通道和位深度。我是从不同的工具获取这些文件的,所以我不能只改变文件的记录方式。

我在处理音频方面不是很擅长,而且我有点难过。我正在处理的代码如下 - 有什么我遗漏的吗?

let inAudioFileURL:NSURL = <url_to_wav_file>

var inAudioFile:AVAudioFile?
do
{
    inAudioFile = try AVAudioFile(forReading: inAudioFileURL)
}
catch let error
{
    print ("error: \(error)")
}

let inAudioFormat:AVAudioFormat = inAudioFile!.processingFormat
let inFrameCount:UInt32 = UInt32(inAudioFile!.length)

let inAudioBuffer:AVAudioPCMBuffer = AVAudioPCMBuffer(PCMFormat: inAudioFormat, frameCapacity: inFrameCount)

do
{
    try inAudioFile!.readIntoBuffer(inAudioBuffer)
}
catch let error
{
    print ("readError: \(error)")
}

let startFormat:AVAudioFormat = AVAudioFormat.init(settings: inAudioFile!.processingFormat.settings)
print ("startFormat: \(startFormat.settings)")

var endFormatSettings = startFormat.settings
endFormatSettings[AVLinearPCMBitDepthKey] = 16
endFormatSettings[AVNumberOfChannelsKey] = 1
endFormatSettings[AVEncoderAudioQualityKey] = AVAudioQuality.Medium.rawValue
print ("endFormatSettings: \(endFormatSettings)")


let endFormat:AVAudioFormat = AVAudioFormat.init(settings: endFormatSettings)
let outBuffer = AVAudioPCMBuffer(PCMFormat: endFormat, frameCapacity: inFrameCount)

let avConverter:AVAudioConverter = AVAudioConverter.init(fromFormat: startFormat, toFormat: endFormat)

do
{
    try avConverter.convertToBuffer(outBuffer, fromBuffer: inAudioBuffer)
}
catch let error
{
    print ("avconverterError: \(error)")
}

至于输出:

startFormat: 
  ["AVSampleRateKey": 16000,
  "AVLinearPCMBitDepthKey": 32,
  "AVLinearPCMIsFloatKey": 1,
  "AVNumberOfChannelsKey": 2,
  "AVFormatIDKey": 1819304813,
  "AVLinearPCMIsNonInterleaved": 0,
  "AVLinearPCMIsBigEndianKey": 0]

endFormatSettings:
["AVSampleRateKey": 16000,
"AVLinearPCMBitDepthKey": 16,
"AVLinearPCMIsFloatKey": 1,
"AVNumberOfChannelsKey": 1,
"AVFormatIDKey": 1819304813,
"AVLinearPCMIsNonInterleaved": 0,
"AVLinearPCMIsBigEndianKey": 0,
"AVEncoderQualityKey": 64]

avconverterError: Error Domain=NSOSStatusErrorDomain Code=-50 "(null)"

我不是 100% 确定为什么会这样,但我找到了一个适合我的解决方案,所以我是这样理解这个问题的。我通过尝试使用备用 convert(to:error:withInputFrom:) 方法找到了这个解决方案。使用这个给了我一个不同的错误:

`ERROR:    AVAudioConverter.mm:526: FillComplexProc: required condition is false: [impl->_inputBufferReceived.format isEqual: impl->_inputFormat]`

问题出在我设置 AVAudioConverter:

的那一行
let avConverter:AVAudioConverter = AVAudioConverter.init(fromFormat: startFormat, toFormat: endFormat)

似乎音频转换器想要使用与输入缓冲区相同的 AVAudioFormat,而不是使用基于原始设置的副本。一旦我将 startFormat 换成 inAudioFormatconvert(to:error:withInputFrom:) 错误就被消除了,一切都按预期进行了。然后我可以回去使用更简单的 convert(to:fromBuffer:) 方法,我处理的原始错误也消失了。

回顾一下,设置转换器的行现在看起来像:

let avConverter:AVAudioConverter = AVAudioConverter.init(fromFormat: inAudioFormat, toFormat: endFormat)

至于缺少有关如何使用 AVAudioConverter 的文档,我不知道为什么 API 参考几乎没有。相反,在 Xcode 中,CMD-单击代码中的 AVAudioConverter 以转到它的头文件。那里有很多评论和信息。不是完整的示例代码或任何东西,但它至少是一些东西。