gpt4 book ai didi

ios - 连接耳机无声

转载 作者:行者123 更新时间:2023-11-29 11:25:30 24 4
gpt4 key购买 nike

我使用 Red5Pro for Xamarin 连接到音频转换。声音进入扬声器。一边听,一边连接蓝牙耳机。声音切换到他们身上,但很安静。

对于声音,我使用 AVAudioSession 和设置:

类别 - PlayAndRecord

类别选项 - DefaultToSpeaker |允许蓝牙 |允许蓝牙A2DP

并激活 session

设置AVAudioSession代码:

    private static void SetupAVSession()
{
AVAudioSession.SharedInstance().SetActive(false);
AVAudioSession.SharedInstance().SetCategory(AVAudioSessionCategory.PlayAndRecord,
AVAudioSessionCategoryOptions.DefaultToSpeaker | AVAudioSessionCategoryOptions.AllowBluetooth | AVAudioSessionCategoryOptions.AllowBluetoothA2DP);
AVAudioSession.SharedInstance().SetActive(true);
}

最佳答案

我使用值为 16000 的 SetPreferredSampleRate 并且运行良好

AVAudioSession.SharedInstance().SetPreferredSampleRate(16000, out NSError sampleHardwareErr2);

关于ios - 连接耳机无声,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59083136/

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