gpt4 book ai didi

ios - 如何从 iOS 设备获取硬件采样率?

转载 作者:可可西里 更新时间:2023-11-01 01:08:47 26 4
gpt4 key购买 nike

在我的应用程序中,我使用 AVAudioEngine 进行语音识别,但我很难理解如何正确设置 inputNode。

我使用本教程作为我的代码示例:https://www.raywenderlich.com/155752/speech-recognition-tutorial-ios

这部分代码让我头疼:

let node = audioEngine.inputNode
let recordingFormat = node.outputFormat(forBus: 0)

node.installTap(onBus: 0, bufferSize: 1024,
format: recordingFormat) { [unowned self]
(buffer, _) in
self.request.append(buffer)
}

audioEngine.prepare()
try audioEngine.start()

基本上,我的应用程序因以下错误而崩溃:

AVAEInternal.h:70:_AVAE_Check: required condition is false: [AVAudioIONodeImpl.mm:897:SetOutputFormat:
(format.sampleRate == hwFormat.sampleRate)]

所以我的问题是,如何从运行应用程序的设备获取硬件采样率,以便将其设置为我的节点记录格式?

此外,如果正在运行的应用程序正在通过 mac 录制或通过 apple TV 进行屏幕共享,我想我将需要获取这些设备的硬件采样率,以便我的应用程序在这些情况下也不会崩溃?!

非常感谢任何形式的帮助!

最佳答案

来自 AVAudioSession 的硬件采样率。

let sampleRate = AVAudioSession.sharedInstance().sampleRate

但这可能更适合您的具体情况。

let sampleRate = node.inputFormat(forBus: 0).sampleRate

关于ios - 如何从 iOS 设备获取硬件采样率?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50712088/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com