Sony Noise-Cancelling Headphones (WH-1000XM2/3) and bluetooth initial autoconnect
So I have Ubuntu 18.04 installed on both my personal and work laptops and I am experiencing the same issue on both of them.
I have Sony WH-1000XM3 noise-canceling headphones and they are paired, everything is fine and working, the only problem is that whenever I turn them on and the auto-connect of the Bluetooth on Ubuntu kicks in and connects to them, they start sounding weird.
By weird I mean it's like Ambient sound is turned on, although the headphones are on Noise cancellation and the sound is really bad and quite.
The Issue, however, disappears when I disconnect and reconnect them manually.
Thanks in advance!
Update:
Using the solution that switches to A2DP solved nothing. The headphones do connect, but then it doesn't switch to them, the sound keeps playing on the speakers of the laptop. Trying to switch from and to the headphones couple of times also doesn't solve the problem.
Using the other solution with editing the /etc/bluetooth/main.conf results to the same issue. I did try even removing the device and pairing it again.
Relative SOLUTION:
- I had to install some other packages:
sudo apt install libdbus-1-dev libudev-dev libical-dev libreadline-dev
- Install
bluez-5.52
by building it from source. For details see the README + you have to runsudo make install
http://www.bluez.org/release-of-bluez-5-54-and-5-53/ systemctl daemon-reload
sudo service bluetooth restart
Also note that this was on re-freshed Ubuntu 18.04, I kinda screwed up some dependencies and had to fix my OS by installing it fresh on top of the old one, before that I had some other old dependencies that didn't allow me to install bluez-5.52
The "ambient noise" you're hearing is a loopback from your computer's mic coming out through your headphones.
This is apparently due to a bug with A2DP's implementation.
I fixed this in Ubuntu 19.04 by installing Blueman and pairing my headphones as an Audio Sink rather than a headset:
- Unpair your headphones, if they're currently paired.
- sudo apt install blueman
- Open Blueman, click on "search".
- Select your headphones, right click, select "Setup"
- Make sure they're paired as an Audio Sink rather than a Headset
- Select your headphones as an audio output in your sound settings
If you have Spotify open throughout the process you have to restart it.
I had exactly the same issue in Ubuntu 18.04 with Sony WH-CH700w. I used the solution offered by @Luiz: I installed bluez-5.52
. Since I didn't want to spend my time on resolving dependencies, I just compiled it from scratch.
Step-by-step solution:
- download
bluez-5.52
(or later) from here; - unpack:
tar -xf bluez-5.52.tar.xz
- go there:
cd bluez-5.52
- configure:
./configure
- here I had
libical
missing. I installed it viasudo apt-get install libical-dev
- since my previous configuration failed, I did it again:
./configure
- compile:
make
- install:
sudo make install
- restart bluetooth machinery:
sudo service bluetooth restart
or just reboot your computer if you have a possibility:sudo reboot
That's it!
Important note: before restarting I returned my /etc/bluetooth/main.conf
into the initial state, i.e. I commented out everything I've ever added there. In fact, I commented out everything.
I had a similar issue. I had to disconnect the Headphones, remove the headset, redo the setup and than switch to A2DP in the sound setting. Disconnecting and reconnecting them was the crucial part - just switching the profile didn't change anything. I had to do this twice until it eventually worked.
Note that apparently A2DP is unidirectional, so you can't use the microphones with A2DP - if you need to use the microphone as well, you are stuck to crappy sound.
No workarounds needed
This problem is related to BlueZ and was fixed at version 5.52
Create a temporary folder, then download and install the updated packages using the following commands:
wget https://launchpad.net/ubuntu/+source/bluez/5.52-0ubuntu2/+build/18277594/+files/bluez_5.52-0ubuntu2_amd64.deb
wget https://launchpad.net/ubuntu/+source/bluez/5.52-0ubuntu2/+build/18277594/+files/libbluetooth3_5.52-0ubuntu2_amd64.deb
wget https://launchpad.net/ubuntu/+source/bluez/5.52-0ubuntu2/+build/18277594/+files/bluez-cups_5.52-0ubuntu2_amd64.deb
wget https://launchpad.net/ubuntu/+source/bluez/5.52-0ubuntu2/+build/18277594/+files/bluez-obexd_5.52-0ubuntu2_amd64.deb
sudo dpkg -i *.deb
Worked just fine with my wh-1000xm2 at ubuntu 19.04.
For further information about the bug, see here