diff options
author | David Runge <david.runge@frqrec.com> | 2013-12-31 14:17:34 +0100 |
---|---|---|
committer | David Runge <david.runge@frqrec.com> | 2013-12-31 14:17:34 +0100 |
commit | d9fd1d6971d8b3d71a0f1556a3b5d29ea6641ac2 (patch) | |
tree | e2ea6ffd785640a5059c4778880826203702d145 | |
parent | b3099adb3b6f02fd7dbb4efef46705448df86975 (diff) | |
download | dotfiles-d9fd1d6971d8b3d71a0f1556a3b5d29ea6641ac2.tar.gz dotfiles-d9fd1d6971d8b3d71a0f1556a3b5d29ea6641ac2.tar.bz2 dotfiles-d9fd1d6971d8b3d71a0f1556a3b5d29ea6641ac2.tar.xz dotfiles-d9fd1d6971d8b3d71a0f1556a3b5d29ea6641ac2.zip |
Adding mpd config
-rw-r--r-- | .mpd/mpd.conf | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.mpd/mpd.conf b/.mpd/mpd.conf new file mode 100644 index 0000000..d272aa9 --- /dev/null +++ b/.mpd/mpd.conf @@ -0,0 +1,35 @@ +music_directory "/home/dave/.mpd/folders" +playlist_directory "/home/dave/.mpd/playlists" +db_file "/home/dave/.mpd/mpd.db" +log_file "/home/dave/.mpd/mpd.log" +pid_file "/home/dave/.mpd/mpd.pid" +state_file "/home/dave/.mpd/mpdstate" +#bind_to_address "127.0.0.1" +bind_to_address "::" +port "6600" +gapless_mp3_playback "yes" +save_absolute_paths_in_playlists "yes" +#zeroconf_enabled "yes" +#zeroconf_name "dvzrv mpd" + +input { + plugin "curl" +} + +audio_output { + type "pulse" + name "MPD" + mixer_type "software" + server "127.0.0.1" +# server "s4" # optional +# sink "alsa_input.pci-0000_00_08.0.analog-stereo" +# sink "alsa_output.pci-0000_00_1b.0.analog-stereo" +} + +audio_output { + type "fifo" + name "mpd_fifo" + path "/tmp/mpd.fifo" + format "44100:16:2" +} + |