Skip to content

Instantly share code, notes, and snippets.

@hdodenhof
Forked from the-spyke/pipewire.md
Created August 8, 2022 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hdodenhof/5d47198936651502fc4c010688347162 to your computer and use it in GitHub Desktop.
Save hdodenhof/5d47198936651502fc4c010688347162 to your computer and use it in GitHub Desktop.
Enable PipeWire on Ubuntu 22.04

Enable PipeWire on Ubuntu 22.04

This guide is only for original Ubuntu out-of-the-box packages. If you have added a custom PPA like pipewire-debian, you might get into conflicts.

Ubuntu 22.04 has PipeWire partially installed and enabled as it's used by browsers (WebRTC) for recoding the screeen under Wayland. We can enable remaining parts and use PipeWire for audio and Bluetooth instead of PulseAudio.

Starting from WirePlumber version 0.4.8 automatic Bluetooth profile switching (e.g. switching from A2DP to HSP/HFP when an application needs microphone access) is supported. Jammy (22.04) repos provide exactly version 0.4.8. So, we're good.

Based on Debian Wiki, but simplified for Ubuntu 22.04.

Install

Install Bluetooth codecs AAC/LDAC/AptX:

$ sudo apt install \
  libfdk-aac2 \
  libldacbt-{abr,enc}2 \
  libopenaptx0

Install remaining PipeWire packages and WirePlumber as the session manager:

$ sudo apt install \
  libspa-0.2-bluetooth \
  pipewire-audio-client-libraries \
  pipewire-media-session- \
  wireplumber

Notice '-' at the end of 'pipewire-media-session'. This is to remove it in the same command, because 'wireplumber' will be used instead.

Start WirePlumber for your user:

$ systemctl --user --now enable wireplumber.service

Configure

ALSA

Single step. Copy the config file from the PipeWire examples into your ALSA configuration directory:

$ sudo cp /usr/share/doc/pipewire/examples/alsa.conf.d/99-pipewire-default.conf /etc/alsa/conf.d/

PulseAudio

Everything was done automatically by pipewire-pulse package, which should have been installed by wireplumber package as recommended. If not, install it yourself.

Bluetooth

Just remove this package and Bluetooth will be handled by PipeWire:

$ sudo apt remove pulseaudio-module-bluetooth

Done

Reboot and check if it works by running:

$ LANG=C pactl info | grep '^Server Name'
@Danny3
Copy link

Danny3 commented Jan 19, 2023

This works on Debian 12 (Bookworm) too, except for the ALSA step.

BTW, is this for audio only?
Shouldn't the package "gstreamer1.0-pipewire" be installed too, like in this guide:
PipeWire on Ubuntu MATE 22.04
https://ubuntu-mate.org/blog/ubuntu-mate-kinetic-kudu-release-notes/

@hdodenhof
Copy link
Author

I just forked this as a bookmark, you should go to the upstream version for questions. Thanks!

@Danny3
Copy link

Danny3 commented Jan 21, 2023

Thank you very much!

I haven't noticed that this was a fork and also didn't know that gists can have forks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment