如何使用内置麦克风输入和蓝牙输出

How to use internal mic for input and bluetooth for output

我目前正在尝试让我的设备通过设备麦克风为捕获会话录制音频,同时在蓝牙设备 (AirPods) 上输出音频。

我这样做的原因是使用蓝牙耳机,尤其是 AirPods,当蓝牙麦克风处于活动状态时,播放质量很糟糕。

我试过使用 setPreferredInput,但它同时改变了输入和输出,这是我目前所拥有的。

   do {
        let session = AVAudioSession.sharedInstance()
        try session.setCategory(.playAndRecord, mode: .default, options: [.defaultToSpeaker, .allowBluetooth, .mixWithOthers])
        print(session.currentRoute.outputs)
        try session.setAllowHapticsAndSystemSoundsDuringRecording(true)
        try session.setActive(true, options: .notifyOthersOnDeactivation)
        if let mic = session.availableInputs?.first(where: {[=10=].portType == AVAudioSession.Port.builtInMic}) {
            try session.setPreferredInput(mic)
        }
    } catch let err {
        print("Audio session err", err.localizedDescription)
    }

我还看到了一个旧的 api,它可能对 AudioSession 有帮助,但它现在似乎已经贬值很久了 (kAudioSessionProperty_OverrideCategoryEnableBluetoothInput)。

A​​pp Store上还有其他应用好像实现了分录功能,看来是可以的。

删除 allowBluetooth 并使用 allowBluetoothA2DP。你也不希望defaultToSpeaker在这里。

“允许蓝牙”实际上意味着“更喜欢 HFP”,这就是音频如此糟糕的原因。 HFP 是一种低带宽双向协议,通常用于 phone 呼叫。枚举名称在 IMO 中非常混乱。人们总是对此感到困惑。

A​​2DP 是一种高带宽单向协议(它不支持微phone)。当您请求时,耳机的 microphone 将被禁用,您将默认获得 iPhone 的 microphone(前提是没有其他有线 microphone 可用,但这不太可能)。