Swift installTap 使用蓝牙麦克风产生“花栗鼠”音频
Posted
技术标签:
【中文标题】Swift installTap 使用蓝牙麦克风产生“花栗鼠”音频【英文标题】:Swift installTap using bluetooth mic produces "chipmunk" audio 【发布时间】:2017-05-02 16:40:34 【问题描述】:当使用蓝牙麦克风并记录 installTap 的输出时,我得到了高音调、非常快的播放。
使用蓝牙:
installTap -> 高音、快速播放
AVAudioRecorder -> 按预期正常
使用苹果的耳机麦克风:
installTap -> 按预期正常
AVAudioRecorder -> 按预期正常
知道为什么会这样吗?如果 AVAudioRecorder 能够按预期录制蓝牙输入,为什么我在通过 installTap 录制时会获得高音、快速的播放?
安装点击:
let format = mixer.outputFormat(forBus: 0)
let _bufferSize : AVAudioFrameCount = 4096
mixer.installTap(onBus: 0, bufferSize: _bufferSize, format: format)
(buffer: AVAudioPCMBuffer!, time: AVAudioTime!) -> Void in
try self.outputFile.write(from: buffer)
输出文件:
try self.outputFile = AVAudioFile(forWriting: outputFile, settings: self._settings)
_设置:
let _settings = [
AVLinearPCMIsFloatKey: 1,
AVLinearPCMIsNonInterleaved: 1,
AVFormatIDKey: Int(kAudioFormatLinearPCM),
AVSampleRateKey: 44100,
AVNumberOfChannelsKey: 2,
AVLinearPCMBitDepthKey: 32,
AVLinearPCMIsBigEndianKey: 0,
AVEncoderAudioQualityKey: AVAudioQuality.low.rawValue
]
【问题讨论】:
【参考方案1】:问题解决了。
事实证明,蓝牙麦克风的采样率设置为 8000 kHz,因此声音快速、高音。这里的问题是,我们无法设置输入的设置。
为了解决这个问题,我必须在输入节点和输出节点之间插入一个新节点,将该新节点的采样率设置为 44,100 kHz,然后点击该新节点而不是主节点。
// our new node
var k44mixer = AVAudioMixerNode()
// the input node, which is currently the bluetooth mic
let input = engine.inputNode!
let inputFormat = input.inputFormat(forBus: 0)
// format for the new node
let k44format = AVAudioFormat(commonFormat: .pcmFormatFloat32, sampleRate: 44100, channels: 2, interleaved: false)
// attach the new node to the audio engine
engine.attach(self.k44mixer)
// connect input to the new node, using the input's format
engine.connect(input, to: self.k44mixer, format: inputFormat)
// connect the new node to the output node
engine.connect(self.k44mixer, to: engine.outputNode, format: k44format)
// tap on the new node
self.k44mixer.installTap(onBus: 0, bufferSize: 1024, format: self.k44mixer.outputFormat(forBus: 0), block:
(buffer: AVAudioPCMBuffer!, time: AVAudioTime!) -> Void in
print(NSString(string: "writing"))
do
try self.outputFile.write(from: buffer)
catch
print(NSString(string: "Write failed"));
)
希望这可以帮助任何人。这让我挠了一个多星期!干杯!
【讨论】:
另外,我怀疑 AVAudioRecorder 在录制时会做类似的事情(插入具有不同设置的节点),这就是为什么结果很好。 嘿,你能看看这段代码吗? github.com/jscalo/tempi-fft/blob/master/TempiFFT/… 无需安装 Tap 即可从麦克风接收音频。不幸的是,当我更改 'setPreferredIOBufferDuration' 参数时,它不会更改 bufferSize.. =/ 你认为这是错误地实现吗?以上是关于Swift installTap 使用蓝牙麦克风产生“花栗鼠”音频的主要内容,如果未能解决你的问题,请参考以下文章