Bluetooth does not work on pi 5

Yes. I am trying to connect my RPi 5 to a pair of bluetooth speakers. I was able to resolve this by 4 things:

  1. sudo apt-get install libspa-0.2-bluetooth
  2. Enable experimental features in /etc/bluetooth/main.conf
    Experimental = True
    KernelExperimental = true
  3. Modify bluetooth service with
    ExecStart=/usr/lib/bluetooth/bluetoothd --noplugin=sap
  4. sudo apt-get install bluez-alsa-utils

Thank you.