dot/config/mpd/mpd.conf

40 lines
734 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
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-04-04 17:04:16 +00:00
name "mpd"
2021-10-09 21:20:41 +00:00
}
2021-10-10 01:23:03 +00:00
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-04-04 17:04:16 +00:00
format "44100: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"