]> git.rmz.io Git - dotfiles.git/blob - mpd/mpd.conf
mpd: bind to any address
[dotfiles.git] / mpd / mpd.conf
1 # An example configuration file for MPD can be found at:
2 # /usr/share/doc/mpd/
3
4 bind_to_address "any"
5 bind_to_address "/var/run/user/1000/mpd.socket"
6 music_directory "~/music"
7 playlist_directory "~/.local/share/mpd/playlists"
8 db_file "~/.local/share/mpd/database"
9 log_file "~/.local/share/mpd/log"
10 pid_file "~/.local/share/mpd/pid"
11 state_file "~/.local/share/mpd/state"
12 sticker_file "~/.local/share/mpd/sticker.sql"
13
14 input {
15 plugin "curl"
16 }
17
18 audio_output {
19 type "pulse"
20 name "My Pulse Output"
21 }
22
23 audio_output {
24 type "fifo"
25 name "fifo"
26 path "/tmp/mpd.fifo"
27 format "44100:16:2"
28 }