PulseAudio: Difference between revisions
imported>Artturin No edit summary |
imported>Flexagoon No edit summary |
||
Line 15: | Line 15: | ||
</syntaxHighlight> | </syntaxHighlight> | ||
==Troubleshooting | ==Explicit PulseAudio support in applications== | ||
Normally, the system-wide ALSA configuration (<tt>/etc/asound.conf</tt>) redirects the audio of applications which use the ALSA API through PulseAudio. For this reason, most applications do not need to be PulseAudio-aware. Some NixOS packages can be built with explicit PulseAudio support which is disabled by default. This support can be enabled in all applicable packages by setting: | |||
<syntaxHighlight lang="nix"> | |||
nixpkgs.config.pulseaudio = true; | |||
</syntaxHighlight> | |||
== Using Pulseaudio Equalizer == | |||
Currently (2017-11-29 {{issue|8384}}) the <code>qpaeq</code> command does not work out of the box, use the following commands to get it running: | |||
<syntaxHighlight lang=console> | |||
$ pactl load-module module-equalizer-sink | |||
$ pactl load-module module-dbus-protocol | |||
$ nix-shell -p python27Full python27Packages.pyqt4 python27Packages.dbus-python --command qpaeq | |||
</syntaxHighlight> | |||
== Troubleshooting == | |||
=== General troubleshooting === | |||
Before troubleshooting PulseAudio, determine that the kernel-level sound APIs (ALSA) are functional; see [[ALSA]]. | Before troubleshooting PulseAudio, determine that the kernel-level sound APIs (ALSA) are functional; see [[ALSA]]. | ||
Line 47: | Line 64: | ||
(The problem is that also also tries to connect to the card that is already used by pulseaudio, so we need a module pulseaudio-alsa on pulseaudio to redirect also calls to pulseaudio) | (The problem is that also also tries to connect to the card that is already used by pulseaudio, so we need a module pulseaudio-alsa on pulseaudio to redirect also calls to pulseaudio) | ||
== | === Clicking and Garbled Audio === | ||
The newer implementation of the PulseAudio sound server uses timer-based audio scheduling instead of the traditional, interrupt-driven approach. | |||
Timer-based scheduling may expose issues in some ALSA drivers. On the other hand, other drivers might be glitchy without it on, so check to see what works on your system. | |||
To turn timer-based scheduling off add this to your configuration: | |||
<syntaxHighlight lang="nix"> | <syntaxHighlight lang="nix"> | ||
hardware.pulseaudio.configFile = pkgs.runCommand "default.pa" {} '' | |||
sed 's/module-udev-detect$/module-udev-detect tsched=0/' \ | |||
${pkgs.pulseaudio}/etc/pulse/default.pa > $out | |||
''; | |||
</syntaxHighlight> | </syntaxHighlight> | ||
Then perform <code># nixos-rebuild switch</code>, followed by <code>$ pulseaudio -k</code>. | Then perform <code># nixos-rebuild switch</code>, followed by <code>$ pulseaudio -k</code>. | ||
The difference should be directly noticeable. This is a known issue related to quality of Creative driver [https://guh.me/solving-creative-sound-blaster-x-fi-titanium-crackling-slash-distortion-on-linux]. | The difference should be directly noticeable. This is a known issue related to quality of Creative driver [https://guh.me/solving-creative-sound-blaster-x-fi-titanium-crackling-slash-distortion-on-linux], but it can also happen with other sound cards. | ||
==See also== | ==See also== |
Revision as of 12:04, 15 June 2021
PulseAudio is a popular sound server for Linux. It is now required by a number of applications, and should be enabled if audio support is desired on NixOS. Enabling PulseAudio is sufficient to enable audio support on NixOS in most cases.
Enabling PulseAudio
Add to your configuration:
hardware.pulseaudio.enable = true;
hardware.pulseaudio.support32Bit = true; ## If compatibility with 32-bit applications is desired.
You may need to add users to the audio group for them to be able to use audio devices:
users.extraUsers.alice.extraGroups = [ "audio" ... ];
Explicit PulseAudio support in applications
Normally, the system-wide ALSA configuration (/etc/asound.conf) redirects the audio of applications which use the ALSA API through PulseAudio. For this reason, most applications do not need to be PulseAudio-aware. Some NixOS packages can be built with explicit PulseAudio support which is disabled by default. This support can be enabled in all applicable packages by setting:
nixpkgs.config.pulseaudio = true;
Using Pulseaudio Equalizer
Currently (2017-11-29 #8384) the qpaeq
command does not work out of the box, use the following commands to get it running:
$ pactl load-module module-equalizer-sink
$ pactl load-module module-dbus-protocol
$ nix-shell -p python27Full python27Packages.pyqt4 python27Packages.dbus-python --command qpaeq
Troubleshooting
General troubleshooting
Before troubleshooting PulseAudio, determine that the kernel-level sound APIs (ALSA) are functional; see ALSA.
If ALSA-level audio is working, determine whether audio is being routed via PulseAudio.
To determine what processes are using the sound devices:
$ sudo lsof /dev/snd/*
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
pulseaudi 14080 goibhniu 30u CHR 116,7 0t0 5169 /dev/snd/controlC0
pulseaudi 14080 goibhniu 37u CHR 116,7 0t0 5169 /dev/snd/controlC0
In this example, only pulseaudio processes are using sound devices.
If other processes (such as plugin-container) are using sound devices, this indicates they are bypassing PulseAudio; check that you don't have a local ~/.asoundrc file directing audio to somewhere else.
Note that you may need to enable the full pulseaudio package using:
hardware.pulseaudio.package = pkgs.pulseaudioFull;
For example I had to enable this package in order to solve an error:
snd_pcm_open failed: Device or resource busy
(The problem is that also also tries to connect to the card that is already used by pulseaudio, so we need a module pulseaudio-alsa on pulseaudio to redirect also calls to pulseaudio)
Clicking and Garbled Audio
The newer implementation of the PulseAudio sound server uses timer-based audio scheduling instead of the traditional, interrupt-driven approach.
Timer-based scheduling may expose issues in some ALSA drivers. On the other hand, other drivers might be glitchy without it on, so check to see what works on your system.
To turn timer-based scheduling off add this to your configuration:
hardware.pulseaudio.configFile = pkgs.runCommand "default.pa" {} ''
sed 's/module-udev-detect$/module-udev-detect tsched=0/' \
${pkgs.pulseaudio}/etc/pulse/default.pa > $out
'';
Then perform # nixos-rebuild switch
, followed by $ pulseaudio -k
.
The difference should be directly noticeable. This is a known issue related to quality of Creative driver [1], but it can also happen with other sound cards.