| 1 | # |
| 2 | music_directory "~/Archives/Audio" |
| 3 | playlist_directory "~/var/lib/mpd/playlists" |
| 4 | db_file "~/var/lib/mpd/tag_cache" |
| 5 | log_file "~/var/log/mpd/mpd.log" |
| 6 | pid_file "~/var/run/mpd/pid" |
| 7 | state_file "~/var/lib/mpd/state" |
| 8 | sticker_file "~/var/lib/mpd/sticker.sql" |
| 9 | bind_to_address "localhost" |
| 10 | bind_to_address "~/var/run/mpd/socket" |
| 11 | #port "6600" |
| 12 | log_level "verbose" # "default", "secure" or "verbose" |
| 13 | #gapless_mp3_playback "yes" |
| 14 | #restore_paused "no" |
| 15 | #save_absolute_paths_in_playlists "no" |
| 16 | #metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc" |
| 17 | #auto_update "yes" |
| 18 | #auto_update_depth "3" |
| 19 | #follow_outside_symlinks "yes" |
| 20 | #follow_inside_symlinks "yes" |
| 21 | zeroconf_enabled "no" |
| 22 | |
| 23 | input { |
| 24 | plugin "local" |
| 25 | } |
| 26 | |
| 27 | audio_output { |
| 28 | type "pulse" |
| 29 | name "alsa_output.pci-0000_00_1b.0.analog-stereo" |
| 30 | } |
| 31 | |
| 32 | audio_output { |
| 33 | type "fifo" |
| 34 | name "pcm.fifo" |
| 35 | path "~/var/run/mpd/pcm.fifo" |
| 36 | format "44100:16:2" |
| 37 | } |
| 38 | |
| 39 | filesystem_charset "UTF-8" |
| 40 | id3v1_encoding "UTF-8" |
| 41 | |
| 42 | decoder { |
| 43 | plugin "flac" |
| 44 | enabled "yes" |
| 45 | } |
| 46 | |
| 47 | decoder { |
| 48 | plugin "vorbis" |
| 49 | enabled "yes" |
| 50 | } |