dot/config/mpd/mpd.conf

40 lines
804 B
Plaintext
Raw 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
#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"
name "mpd"
}
2021-10-10 01:23:03 +00:00
2021-10-09 21:20:41 +00:00
audio_output {
type "fifo"
name "Visualizer feed"
path "/tmp/mpd.fifo"
format "44100:16:2"
2021-10-10 01:23:03 +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"