diff options
author | David Runge <dave@sleepmap.de> | 2019-03-05 09:34:05 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2019-03-05 09:34:05 +0100 |
commit | 688a8394f0e3f7c962da8fcb7da2002822f99de2 (patch) | |
tree | 40bcc53a38500d7d9c5f2760c5cafcc829b53afa | |
parent | 6d841a73a1daa32e6acea9b6403280874793c91f (diff) | |
download | dotfiles-688a8394f0e3f7c962da8fcb7da2002822f99de2.tar.gz dotfiles-688a8394f0e3f7c962da8fcb7da2002822f99de2.tar.bz2 dotfiles-688a8394f0e3f7c962da8fcb7da2002822f99de2.tar.xz dotfiles-688a8394f0e3f7c962da8fcb7da2002822f99de2.zip |
.config/mpd/mpd-dvzrv-jack.conf: Adding JACK based configuration for mpd, using mpd@.service.
-rw-r--r-- | .config/mpd/mpd-dvzrv-jack.conf | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/.config/mpd/mpd-dvzrv-jack.conf b/.config/mpd/mpd-dvzrv-jack.conf new file mode 100644 index 0000000..552cfe6 --- /dev/null +++ b/.config/mpd/mpd-dvzrv-jack.conf @@ -0,0 +1,31 @@ +music_directory "~/.config/mpd/folders" +playlist_directory "~/.config/mpd/playlists" +db_file "~/.config/mpd/mpd.db" +log_file "syslog" +pid_file "~/.config/mpd/mpd.pid" +state_file "~/.config/mpd/state" +sticker_file "~/.config/mpd/sticker.sql" +port "6600" +save_absolute_paths_in_playlists "yes" + +input { + plugin "curl" +} + +resampler { + plugin "libsamplerate" + type "0" +} + +audio_output { + type "jack" + name "mpd" +} + +audio_output { + type "fifo" + name "mpd_fifo" + path "~/.config/mpd/fifo" + format "44100:16:2" +} + |