3

我需要将使用 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)"
4

1 回答 1

4

我不是 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 中,在您的代码中单击 CMDAVAudioConverter以转到它的头文件。那里有很多评论和信息。不是完整的示例代码或任何东西,但它至少是一些东西。

于 2016-09-15T04:18:35.320 回答