PipeWire: Difference between revisions

imported>Fufexan
Reword + correct grammar + remove verbal redundancies + relocate Troubleshooting section
imported>Thiagokokada
Add SBC-XQ configuration.
Line 48: Line 48:


==Bluetooth Configuration==
==Bluetooth Configuration==
PipeWire handles Bluetooth very well, and it can be configured to use specific codecs. The mSBC codec provides slightly better sound quality in calls than regular HFP/HSP.
PipeWire handles Bluetooth very well, and it can be configured to use specific codecs. The mSBC codec provides slightly better sound quality in calls than regular HFP/HSP, while the SBC-XQ provides better sound quality for audio listening. For more information [https://www.guyrutenberg.com/2021/03/11/replacing-pulseaudio-with-pipewire/ see this link].
 
<syntaxHighlight lang="nix">
<syntaxHighlight lang="nix">
services.pipewire  = {
services.pipewire  = {
Line 60: Line 61:
           # mSBC is not expected to work on all headset + adapter combinations.
           # mSBC is not expected to work on all headset + adapter combinations.
           "bluez5.msbc-support" = true;
           "bluez5.msbc-support" = true;
          # SBC-XQ is not expected to work on all headset + adapter combinations.
          "bluez5.sbc-xq-support" = true;
         };
         };
       };
       };