无法连接外部蓝牙麦克风作为AudioKit的输入。我在检查可用的输入设备时没有显示“ HeyMic”,但在显示可用的输出设备时有“ HeyMic”。关于如何解决这个问题有什么想法吗?
答案 0 :(得分:0)
您应该启用“使用音频”工具包以将蓝牙选项设置为true。
您可以使用以下代码
do {
AKSettings.useBluetooth = true
try AKSettings.setSession(category: .playAndRecord , with: [.allowBluetoothA2DP, .defaultToSpeaker, .allowAirPlay])
} catch {
AKLog("Could not set session category.")
}