我需要将记录有2个音频通道的.wav文件转换为只有1个通道的.wav,并将位深度从32减少到16.我一直在尝试使用{{1但是,转换引发了错误: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)")
}
答案 0 :(得分:2)
我不是百分之百确定为什么会这样,但我找到了一个解决方案让我这样做,所以这就是我如何理解这个问题。我通过尝试使用备用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
换成inAudioFormat
后,convert(to:error:withInputFrom:)
错误被驳回,事情按预期进行。然后我可以回到使用更简单的convert(to:fromBuffer:)
方法,我正在处理的原始错误也消失了。
总结一下,设置转换器的线现在看起来像:
let avConverter:AVAudioConverter = AVAudioConverter.init(fromFormat: inAudioFormat, toFormat: endFormat)
至于缺乏关于如何使用AVAudioConverter
的文档,我不知道为什么API引用几乎没有。相反,在Xcode中,CMD-单击代码中的AVAudioConverter
以转到它的头文件。那里有很多评论和信息。不是完整的示例代码或任何东西,但它至少是一些东西。