ubuntu:sound:pulseaudio:set_default_sound_output_card
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
ubuntu:sound:pulseaudio:set_default_sound_output_card [2020/12/13 12:08] โ created peter | ubuntu:sound:pulseaudio:set_default_sound_output_card [2020/12/13 12:23] (current) โ peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Ubuntu - Sound - PulseAudio - Set default sound output card ====== | ====== Ubuntu - Sound - PulseAudio - Set default sound output card ====== | ||
+ | Set default sound output card dynamically using PulseAudio. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Get list of Sources ===== | ||
+ | |||
+ | <code bash> | ||
+ | pactl list short sources | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | 1 alsa_output.pci-0000_0b_00.4.analog-stereo.monitor module-alsa-card.c s16le 2ch 48000Hz IDLE | ||
+ | 4 alsa_output.pci-0000_09_00.1.hdmi-stereo-extra1.monitor module-alsa-card.c s16le 2ch 44100Hz SUSPENDED | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Get list of Sinks ===== | ||
+ | |||
+ | <code bash> | ||
+ | pactl list short sinks | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | 1 alsa_output.pci-0000_0b_00.4.analog-stereo module-alsa-card.c s16le 2ch 48000Hz RUNNING | ||
+ | 3 alsa_output.pci-0000_09_00.1.hdmi-stereo-extra1 module-alsa-card.c s16le 2ch 44100Hz SUSPENDED | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Set Defaults ===== | ||
+ | |||
+ | <code bash> | ||
+ | pactl set-default-source alsa_output.pci-0000_0b_00.4.analog-stereo | ||
+ | pactl set-default-sink alsa_output.pci-0000_0b_00.4.analog-stereo | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Use a BASH Script ===== | ||
+ | |||
+ | <code bash> | ||
+ | !/bin/bash | ||
+ | |||
+ | declare -i sinks_count=`pacmd list-sinks | grep -c index: | ||
+ | declare -i active_sink_index=`pacmd list-sinks | sed -n -e ' | ||
+ | declare -i major_sink_index=$sinks_count-1 | ||
+ | declare -i next_sink_index=0 | ||
+ | |||
+ | if [ $active_sink_index -ne $major_sink_index ] ; then | ||
+ | next_sink_index=active_sink_index+1 | ||
+ | fi | ||
+ | |||
+ | #change the default sink | ||
+ | pacmd " | ||
+ | |||
+ | #move all inputs to the new sink | ||
+ | for app in $(pacmd list-sink-inputs | sed -n -e ' | ||
+ | do | ||
+ | pacmd " | ||
+ | done | ||
+ | |||
+ | #display notification | ||
+ | declare -i ndx=0 | ||
+ | pacmd list-sinks | sed -n -e ' | ||
+ | do | ||
+ | if [ $next_sink_index -eq $ndx ] ; then | ||
+ | notify-send -i notification-audio-volume-high "Sound output switched to" " | ||
+ | exit | ||
+ | </ | ||
+ | |||
+ | **NOTE: | ||
+ | |||
+ | Before running the script: | ||
+ | |||
+ | * Set Permissions: | ||
+ | |||
+ | To allocate to a shortcut key: | ||
+ | |||
+ | * Navigate to **System -> Preferences -> Keyboard Shortcuts**. | ||
+ | * Click **Add**. | ||
+ | * Name: **Switch between audio devices**. | ||
+ | * Command: | ||
+ | * Press Apply. | ||
+ | * Select the newly added shortcut row and click on the shortcut column. | ||
+ | * Choose a shortcut combination โ e.g.WIN + F12. | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | |||
+ | ===== References ===== | ||
+ | |||
+ | man pactl |
ubuntu/sound/pulseaudio/set_default_sound_output_card.1607861292.txt.gz ยท Last modified: 2020/12/13 12:08 by peter