My laptop is Acer and I have Bluetooth 5.0 Headphone. My Headphone mic doesn't detected and Headphone speaker audio quality is not good. I have tried lots of drivers bluez, pulseaudio, ofono, phonesim. All are not working for me and have issues with them and then I found a thread in Askubuntu. Failed to change profile to headset_head_unit This thread tell me how to solve this issue. I un installed all the old drivers and then installed Pipewire. Follow this steps maybe helps you.
Bluetooth Headphone Mic not detected. Issues with Audio quality Headphone speaker With solved Answer
1 Answers
Open your terminal and follow these steps:
We will use a PPA for adding Pipewire to Ubuntu 20.04, which is maintained regularly:
sudo add-apt-repository ppa:pipewire-debian/pipewire-upstream
To update the PPA packages in your system do:
sudo apt update
Install the package:
sudo apt install pipewire
There is also a dependency needed to be installed with Pipewire, otherwise you will face the issue of "Bluetooth headset won't connect after installing pipewire". Install the dependency by:
sudo apt install libspa-0.2-bluetooth
Now, to install the client libraries:
sudo apt install pipewire-audio-client-libraries
Reload the daemon:
systemctl --user daemon-reload
Remove your paired Headphones from your paired list
Then Reboot your machine
You can ensure that Pipewire is now running through:
pactl info
This command will give the following output, in Server Name you can see:
PulseAudio (on PipeWire 0.3.28)
Now you have pair your Headphones your machine
If Reboot needed reboot your machine again (mostly needed)
Now you can enjoy better audio quality.
When you need to use your headphone microphone, you have change to change it manually.
Note: This may be a little tricky and occasionally buggy, but you should have better audio quality, though microphone audio still needs some improvement.

- 22,138
- 7
- 45
- 75

- 53