应用需要通过HFP录制声音,但通过A2DP播放声音。
try AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayAndRecord, with:[AVAudioSessionCategoryOptions.allowBluetooth, AVAudioSessionCategoryOptions.allowBluetoothA2DP, AVAudioSessionCategoryOptions.mixWithOthers])
据我了解,这将允许我使用同时支持 HFP 和 A2DP 的蓝牙设备录制和播放声音。但是,当我检查文档时,它说
when a single device supports both the Hands-Free Profile (HFP) and
the Advanced Audio Distribution Profile (A2DP), the Hands-Free ports
will be given a higher priority for routing
所以,录制和播放两条路径都到 HFP,我找不到强制通过 A2DP 播放的方法。
Best Answer-推荐答案 strong>
好的,目前没有办法做到这一点。我已经与 Apple 验证了这一点。
关于ios - 如何在 iOS 中强制将音频输出路由到蓝牙 A2DP?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/51170128/
|