add arduino to bashrc
[dotfiles.git] / music / .config / mpd / mpd.conf
1 db_file "~/.config/mpd/database"
2 log_file "~/.config/mpd/log"
3
4 music_directory "/mnt/data/music"
5 playlist_directory "~/.config/mpd/playlists"
6 pid_file "~/.config/mpd/pid"
7 state_file "~/.config/mpd/state"
8 sticker_file "~/.config/mpd/sticker.sql"
9
10 user "mrl"
11 group "mrl"
12 bind_to_address "any"
13
14 #auto_update "yes"
15 follow_outside_symlinks "yes"
16 follow_inside_symlinks "yes"
17
18 input {
19 plugin "curl"
20 }
21
22 audio_output {
23 type "pulse"
24 name "My Pulse Output"
25 }
26
27 audio_output {
28 type "cgi-output"
29 name "CGI Output"
30 command "/home/mrl/projects/mpdcgilog/mpdcgilog.py"
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"