5532ffb8abab2ccfe02a785aeba57dd770fc2377
[dotfiles.git] / music / .config / mpd / mpd.conf
1 db_file "~/.config/mpd/database"
2 log_file "~/.config/mpd/log"
3
4 # Optional
5 music_directory "/mnt/data/music"
6 playlist_directory "~/.config/mpd/playlists"
7 pid_file "~/.config/mpd/pid"
8 state_file "~/.config/mpd/state"
9 sticker_file "~/.config/mpd/sticker.sql"
10
11 user "mrl"
12 group "mrl"
13 bind_to_address "any"
14
15 auto_update "yes"
16 follow_outside_symlinks "yes"
17 follow_inside_symlinks "yes"
18
19 input {
20 plugin "curl"
21 # proxy "proxy.isp.com:8080"
22 # proxy_user "user"
23 # proxy_password "password"
24 }
25
26 audio_output {
27 type "pulse"
28 name "My Pulse Output"
29 # server "remote_server" # optional
30 # sink "remote_server_sink" # optional
31 }
32
33 audio_output {
34 type "fifo"
35 name "Visualizer feed"
36 path "/dev/shm/mpd.fifo"
37 format "44100:16:2"
38 }
39
40 filesystem_charset "UTF-8"
41 id3v1_encoding "UTF-8"