From ae2e5397cbc0b3c3eebe5e33b7a988877a80a42b Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Sun, 31 Jan 2021 16:19:32 -0500 Subject: [PATCH] Add MPD config --- mpdconf | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 mpdconf diff --git a/mpdconf b/mpdconf new file mode 100644 index 0000000..28e15fe --- /dev/null +++ b/mpdconf @@ -0,0 +1,31 @@ +bind_to_address "any" + +db_file "~/.mpd/database" +music_directory "~/Music/Library" +playlist_directory "~/.mpd/playlists" +log_file "~/.mpd/log" +pid_file "~/.mpd/pid" +state_file "~/.mpd/state" +sticker_file "~/.mpd/sticker.sql" + +decoder { + plugin "mp4ff" + enabled "no" +} + +auto_update "yes" +auto_update_depth "2" + +follow_outside_symlinks "yes" +follow_inside_symlinks "yes" + +replaygain "auto" + +log_level "default" + +audio_output { + type "osx" + name "macOS Audio Output" + mixer_type "software" + options "buffer_time=500" +}