diff options
author | Ryan Kavanagh <rak@rak.ac> | 2021-12-13 22:32:54 -0500 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2021-12-13 22:43:37 -0500 |
commit | 90daa94608e52ee64cae5e5b6eb07d54745dddbf (patch) | |
tree | 1b18ab625bc4848c7fa5e857611c15eb7e0df506 /etc | |
parent | added asteria public key to authorized keys (diff) |
mpd.conf
Diffstat (limited to 'etc')
-rw-r--r-- | etc/mpd.conf | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/etc/mpd.conf b/etc/mpd.conf new file mode 100644 index 0000000..d0f4385 --- /dev/null +++ b/etc/mpd.conf @@ -0,0 +1,44 @@ +music_directory "/var/lib/mpd/music" +playlist_directory "/var/lib/mpd/playlists" +db_file "/var/lib/mpd/tag_cache" +state_file "/var/lib/mpd/state" +sticker_file "/var/lib/mpd/sticker.sql" +filesystem_charset "UTF-8" + +user "mpd" +bind_to_address "127.0.0.1" +bind_to_address "10.0.1.101" +auto_update "yes" + +input { + plugin "curl" +} + +audio_output { + type "alsa" + name "DigiHug USB Audio" + device "hw:CARD=Audio,DEV=0" + mixer_type "none" + enabled "no" +} +audio_output { + type "pulse" + name "My Pulse Output" + server "127.0.0.1" + mixer_type "hardware" +} +audio_output { + type "fifo" + name "my_fifo" + path "/tmp/mpd.fifo" + format "44100:16:2" +} +audio_output { + type "httpd" + name "HTTP stream" + bind_to_address "10.0.1.101" + port "6688" + quality "5" +} + + |