diff options
author | self <george@gabbott.dev> | 2023-06-15 21:05:24 +0100 |
---|---|---|
committer | self <george@gabbott.dev> | 2023-06-15 21:05:24 +0100 |
commit | a7772cd276588fcec11c7d080a258dd1b50c21f0 (patch) | |
tree | 3169c40d632dc8bc8054505a76c0f327bba4d2fa /mpd.conf | |
parent | 321cfef7a41624af97b3ad3af883d7d017b49e21 (diff) |
mpd: added pipewire as audio output
Diffstat (limited to 'mpd.conf')
-rwxr-xr-x | mpd.conf | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -217,15 +217,15 @@ input { # # An example of an ALSA output: # - audio_output { - type "alsa" - name "My ALSA Device" -# device "hw:0,0" # optional -# mixer_type "hardware" # optional -# mixer_device "default" # optional -# mixer_control "PCM" # optional -# mixer_index "0" # optional -} +# audio_output { +# type "alsa" +# name "My ALSA Device" +# # device "hw:0,0" # optional +# # mixer_type "hardware" # optional +# # mixer_device "default" # optional +# # mixer_control "PCM" # optional +# # mixer_index "0" # optional +# } # audio_output { # type "fifo" @@ -297,13 +297,13 @@ input { # # An example of a pulseaudio output (streaming to a remote pulseaudio server) # -#audio_output { -# type "pulse" -# name "My Pulse Output" +audio_output { + type "pipewire" + name "Pipewire Playback" ## server "remote_server" # optional ## sink "remote_server_sink" # optional ## media_role "media_role" #optional -#} +} # # An example of a winmm output (Windows multimedia API). # |