网络接收数据时蓝牙免提声音不好

网络接收数据时蓝牙免提声音不好

我的笔记本电脑遇到了这个奇怪的问题。当我使用蓝牙免提设备观看 Youtube 视频时,分辨率最高可达 480p,但超过这个分辨率,声音就会变差,通话时会像网络连接不良一样延迟很多。观看任何本地视频时,即使是 1080p,我也不会遇到这个问题。当我观看分辨率为 144p 的视频并在后台下载某些内容时,我都会遇到这个问题。我打开后gnome-system-monitor发现,只要网络数据接收图表上升,声音就会延迟。这可能是什么原因?是不是我的蓝牙硬件不够好?我想在这里提一下,我在台式电脑上使用了同样的免提设备,它在那里工作正常。我只在笔记本电脑上遇到了这个问题。

我正在使用 Ubuntu 21.10,顺便说一句,我在之前的版本中也遇到了同样的问题。

这是hciconfig -a输出。

hci0:   Type: Primary  Bus: USB
    BD Address: 10:4A:7D:43:E4:0E  ACL MTU: 1021:5  SCO MTU: 96:6
    UP RUNNING 
    RX bytes:431332 acl:47 sco:0 events:61392 errors:0
    TX bytes:37711848 acl:61312 sco:0 commands:68 errors:0
    Features: 0xff 0xfe 0x0f 0xfe 0xdb 0xff 0x7b 0x87
    Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3 
    Link policy: RSWITCH HOLD SNIFF 
    Link mode: SLAVE ACCEPT 
    Name: 'shahxad'
    Class: 0x6c010c
    Service Classes: Rendering, Capturing, Audio, Telephony
    Device Class: Computer, Laptop
    HCI Version: 4.0 (0x6)  Revision: 0xe00
    LMP Version: 4.0 (0x6)  Subversion: 0xe00
    Manufacturer: Intel Corp. (2)

这是lspci -knn | grep Net -A3; lsusb

09:00.0 Network controller [0280]: Intel Corporation Wireless 7260 [8086:08b1] (rev c3)
    DeviceName: Intel Stone Peak 2 7260 ac 2x2 + BT4 LE Combo
    Subsystem: Intel Corporation Dual Band Wireless-AC 7260 [8086:c070]
    Kernel driver in use: iwlwifi
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 003: ID 064e:9314 Suyin Corp. HP TrueVision Full HD
Bus 001 Device 002: ID 8087:07dc Intel Corp. Bluetooth wireless interface
Bus 001 Device 004: ID 04f3:2016 Elan Microelectronics Corp. Touchscreen
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

答案1

您可以尝试通过运行以下方法提高同一 2.4 GHz 频段的性能

sudo tee /etc/modprobe.d/iwlwifi-opt.conf <<< "options iwlwifi bt_coex_active=N"

然后重新启动。

可以通过以下方式恢复设置

sudo rm /etc/modprobe.d/iwlwifi-opt.conf

相关内容