PulseAudio: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 40: | Line 40: | ||
priority = 3 | priority = 3 | ||
direction = output | direction = output | ||
</pre> | |||
}} | |||
== Setting the default device (to avoid default output pointing to analog headphones) == | |||
First you need to find out the device names by running: | |||
{{Commandline|pacmd list-sinks | grep "name:"}} | |||
{{Commandline|pacmd list-sources | grep "name:"}} | |||
And then add it to the default.pa configuration: | |||
{{Box File|/etc/pulse/default.pa| | |||
Depending on your external AV-Reciever this prevents crackling sounds and outputs a continous a52 signal through S/PDIF | |||
<pre> | |||
### Make some devices default | |||
set-default-sink alsa_output.pci-0000_01_00.1.iec958-ac3-surround-51 | |||
set-default-source alsa_output.pci-0000_01_00.1.iec958-ac3-surround-51.monitor | |||
</pre> | </pre> | ||
}} | }} | ||
Revision as of 22:21, 15 July 2011
Be sure to configure ALSA first.
PulseAudio configuration
Fix the default PulseAudio/ALSA a52 5.1 profile detection
Setting the default device (to avoid default output pointing to analog headphones)
First you need to find out the device names by running:
And then add it to the default.pa configuration: