21

I have Sony WH-1000XM2 Bluetooth 4.1 headphones (with profiles A2DP, AVRCP, HFP, and HSP) which work with Ubuntu .

However, they constantly connect to the PC in the headset mode with subpar mono audio. For proper high def stereo, I must:

  1. Turn on headphones, wait for them to pair (auto connects to headset mode)
  2. Disconnect the headphones using Blueman-manager
  3. Reconnect to the headphones specifying the High Fidelity Playback Audio Profile.

When I try to change profiles while connected I get the Failed to change profile to a2dp_sink. Funnily enough it can change from a2dp to hsp/hsf just fine...

Is there a way to configure this Bluetooth device to auto connect to high fidelity playback?

Multiple searches for a solution on the web have found nothing useful.

K7AAY
  • 17,705

6 Answers6

18

I had the exact same problem. My Sony WH-1000XM2 used to work only when initially paired with Ubuntu 18.04. After a reboot or headphones off/on they used to connect automatically but the sound was awful. I had to remove the Bluetooth device and pair it again. I tried all of the solutions on the Internet which claim that configurations in:

/etc/bluetooth/main.conf

or

/etc/bluetooth/audio.conf

should do the trick. Well, they don't. The headphones keep working with the 'HSP/HFP' profile and the 'A2DP Sink' can not be set until the phones are repaired.

The more convenient way is to use the command line instead of physically pressing buttons and reconnecting through the UI. So this answer helped me achieve this. However, this looks like a lot of commands to me, so I scripted them in this gist. It should work out of the box.

Whenever the phones get automatically reconnected (after the initial pairing) and they start using 'HSP/HFP' just execute this script and the profile will be set to 'A2DP Sink'. You may have to tweak the sleep intervals according to your headphones.

I hope this is getting fixed in upcoming releases of PulseAudio and Ubuntu.

egelev
  • 291
15

I had a similar problem with Ubuntu 20.04

I was able to select the A2DP profile for my headphones (Bose QC 700). I was able to select A2DP, but every time the headphones disconnected, it would default to the HSP/HFP profile.

Following the solution mentioned here and here, A2DP is now selected automatically at every connection:

  • Add to /etc/pulse/default.pa to automatically switch pulseaudio sink to Bluez:
.ifexists module-bluetooth-discover.so
load-module module-bluetooth-discover
load-module module-switch-on-connect  # Add this
.endif
  • Edit /etc/bluetooth/main.conf to auto select A2DP profile (instead of HSP/HFP):
[General]
Disable=Headset # Add this
  • Apply changes (you may as well need to turn your bluetooth headphones off, then back on):
pulseaudio -k                       # Kills pulseaudio
pulseaudio --start                  # Starts pulseaudio
sudo systemctl restart bluetooth
1

I wound up writing a custom script to do this. You're going to have to adjust the Bluetooth address in order to make it work correctly for your own headset:

#!/bin/bash

DEV_ID="6C_5A_B5_4A_4C_37"

LOCKFILE=/tmp/setup-bt_ad2p.pid if [ -e ${LOCKFILE} ] && kill -0 cat ${LOCKFILE}; then echo "already running" exit fi

make sure the lockfile is removed when we exit and then claim it

trap "rm -f ${LOCKFILE}; exit" INT TERM EXIT echo $$ > ${LOCKFILE}

/usr/bin/gdbus monitor --system --dest org.bluez | while read -r X; do if echo $X | grep "${DEV_ID}.*'Connected': <true>" then echo -n "BT headset detected, configuring " date pacmd set-card-profile bluez_card.${DEV_ID} a2dp_sink fi done

I run this script from autostart, and it's been working for me.

Mark
  • 11
1

I had a very similar problem. As egelev states, many of the solutions do not really solve anything...

However, for future reference, I found a solution involving changing /etc/pulse/default.pa which worked perfectly for me, the full solution can be found here. In short, doing the following automatically changes the profile to A2DP and disables the headphone function upon connecting to bluetooth headphones with mics:

# In /etc/pulse/default.pa do the following:
.ifexists module-bluetooth-discover.so
load-module module-bluetooth-discover
load-module module-switch-on-connect # Add this line
.endif

Create or change /etc/bluetooth/audio.conf with the following lines:

[General] Disable=Headset

Restart pulseaudio

pulseaudio -k

the_ermine
  • 43
  • 5
1

I had a similar problem and I forgot that I installed pipewire which in combination with the pulseaudio-module-bluetooth package conflicts with the a2dp (advanced audio distribution profile). Hence, check if pipewire is running

ps -e | grep pipewire

If it is running either uninstall pipewire and keep the pulseaudio-module-bluetooth module or you can give pipewire a chance, since it has advanced options and performance.

  • Keeping pipewire

    First uninstall the following module at the command line with

    sudo apt remove pulseaudio-module-bluetooth
    

    and install all pipewire packages with

     sudo apt-get install pipewire-*
    

    additional add the following code at the end of your /etc/pulse/default.pa configuration file:

    ### Added to make headset work for pipewire
    ### https://wiki.debian.org/BluetoothUser/a2dp
    load-module module-bluez5-device 
    load-module module-bluez5-discover
    

    On my plasma desktop all codecs are now available:

    enter image description here

  • Keeping default pulseaudio-module

    In case you use the default pulseaudio setup from ubuntu simple uninstall or disable pipwire e.g.:

    sudo apt-get remove pipewire*
    

More information about the a2dp problem can be found on BluetoothUser/a2dp - Debian Wiki.

BTW: My bluetooth hardware is implemented in the Intel Corporation Wi-Fi 6 AX201 chip which made it necessary to download (as on March 2022) the latest firmware driver from the linux kernel homepage. The firmware I am using is:

> ls  -1 /lib/firmware/iwlwifi-QuZ-a0-hr-b0-*

/lib/firmware/iwlwifi-QuZ-a0-hr-b0-48.ucode /lib/firmware/iwlwifi-QuZ-a0-hr-b0-50.ucode /lib/firmware/iwlwifi-QuZ-a0-hr-b0-53.ucode /lib/firmware/iwlwifi-QuZ-a0-hr-b0-55.ucode /lib/firmware/iwlwifi-QuZ-a0-hr-b0-59.ucode /lib/firmware/iwlwifi-QuZ-a0-hr-b0-62.ucode /lib/firmware/iwlwifi-QuZ-a0-hr-b0-63.ucode /lib/firmware/iwlwifi-QuZ-a0-hr-b0-65.ucode /lib/firmware/iwlwifi-QuZ-a0-hr-b0-66.ucode /lib/firmware/iwlwifi-QuZ-a0-hr-b0-67.ucode /lib/firmware/iwlwifi-QuZ-a0-hr-b0-68.ucode /lib/firmware/iwlwifi-QuZ-a0-hr-b0-71.ucode

abu_bua
  • 11,313
0

Add something like that to /etc/pulse/default.pa

.ifexists module-bluetooth-discover.so
load-module module-bluetooth-discover
.endif

.ifexists module-switch-on-connect.so load-module module-switch-on-connect .endif

.ifexists module-bluez5-device.so load-module module-bluez5-device .endif

.ifexists module-bluez5-discover.so load-module module-bluez5-discover .endif

Restart bluetooth and pulseaudio services.

hacknull
  • 101