dot/config/mpd/mpd.conf

50 lines
855 B
Plaintext
Raw Permalink Normal View History

2021-10-09 21:20:41 +00:00
input {
plugin "curl"
2021-10-10 01:23:03 +00:00
}
2021-10-09 21:20:41 +00:00
2022-07-31 21:09:31 +00:00
audio_output {
type "httpd"
name "My HTTP Stream"
encoder "lame" # optional, vorbis or lame
port "6680"
bitrate "420"
format "44100:16:1"
max_clients "0"
}
2021-10-10 01:23:03 +00:00
2021-10-09 21:20:41 +00:00
audio_output {
type "pulse"
2024-05-04 00:15:19 +00:00
name "mpd pulse"
2021-10-09 21:20:41 +00:00
}
2021-10-10 01:23:03 +00:00
2024-05-04 00:15:19 +00:00
#audio_output {
# type "jack"
# name "MPD jack"
#}
#audio_output {
#type "pipewire"
#name "MPD pipewire"
#}
2021-10-09 21:20:41 +00:00
audio_output {
type "fifo"
2022-07-31 21:09:31 +00:00
name "Visualizer feed"
path "/tmp/mpd.fifo"
2024-05-04 00:15:19 +00:00
format "22050:16:2"
2022-07-31 21:09:31 +00:00
}
2021-10-09 21:20:41 +00:00
db_file "~/.config/mpd/database"
log_file "syslog"
music_directory "~/music"
playlist_directory "~/.config/mpd/playlists"
pid_file "~/.config/mpd/pid"
state_file "~/.config/mpd/state"
sticker_file "~/.config/mpd/sticker.sql"
restore_paused "yes"
2021-10-10 01:23:03 +00:00
auto_update "yes"