1
0
Fork 0
dotfiles/mpd/mpd.conf

65 lines
1.0 KiB
Plaintext
Raw Permalink Normal View History

2021-04-24 17:30:03 -07:00
# An example configuration file for MPD.
# Read the user manual for documentation: http://www.musicpd.org/doc/user/
# Don't play music on start
2022-10-08 10:11:20 -07:00
# Files
music_directory "~/Desktop/sync/Music"
playlist_directory "~/.mpd/playlists"
2021-04-24 17:30:03 -07:00
db_file "~/.mpd/database"
2022-10-08 10:11:20 -07:00
log_file "~/.mpd/log"
pid_file "~/.mpd/pid"
state_file "~/.mpd/state"
sticker_file "~/.mpd/sticker.sql"
2021-04-24 17:30:03 -07:00
2022-10-08 10:11:20 -07:00
auto_update "yes"
follow_outside_symlinks "yes"
follow_inside_symlinks "yes"
save_absolute_paths_in_playlists "no"
2021-04-24 17:30:03 -07:00
2022-10-08 10:11:20 -07:00
# Runtime options
user "mark"
group "mark"
port "6600"
2021-04-24 17:30:03 -07:00
2022-10-08 10:11:20 -07:00
restore_paused "yes"
volume_normalization "no"
2021-04-24 17:30:03 -07:00
2022-10-08 10:11:20 -07:00
metadata_to_use "artist,album,title,track,name,genre,date,comment"
zeroconf_enabled "no"
2021-04-24 17:30:03 -07:00
2022-10-08 10:11:20 -07:00
# Output options
2021-04-24 17:30:03 -07:00
audio_output {
type "pulse"
name "pulse audio"
}
2022-10-08 10:11:20 -07:00
# fifo for visualizer
2021-04-24 17:30:03 -07:00
audio_output {
type "fifo"
name "fifo"
path "/tmp/mpd.fifo"
format "44100:16:2"
}
2021-05-14 19:26:57 -07:00
2022-10-08 10:11:20 -07:00
# Plugins
2021-04-24 17:30:03 -07:00
input {
plugin "tidal"
enabled "no"
}
input {
plugin "qobuz"
enabled "no"
}
2021-05-14 19:26:57 -07:00
decoder {
2022-10-08 10:11:20 -07:00
plugin "hybrid_dsd"
enabled "no"
2021-05-14 19:26:57 -07:00
}
2021-04-24 17:30:03 -07:00
decoder {
plugin "wildmidi"
enabled "no"
2022-10-08 10:11:20 -07:00
}