mpd.conf 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # An example configuration file for MPD
  2. user "mpd"
  3. auto_update "no"
  4. music_directory "/media/music"
  5. playlist_directory "/data/mpd/playlists"
  6. state_file "/data/mpd/state"
  7. db_file "/data/mpd/database"
  8. pid_file "/var/run/mpd/mpd.pid"
  9. log_file "syslog"
  10. filesystem_charset "UTF-8"
  11. id3v1_encoding "UTF-8"
  12. mixer_type "disabled"
  13. # An example of an ALSA output
  14. audio_output {
  15. type "alsa"
  16. name "My ALSA Device"
  17. device "hw:0,0"
  18. format "44100:16:2"
  19. }
  20. # An example of an ALSA output (USB soundcard)
  21. #audio_output {
  22. # type "alsa"
  23. # name "My ALSA Device"
  24. # device "hw:0,0"
  25. # format "44100:16:2"
  26. # mixer_type "hardware"
  27. # mixer_control "Speaker"
  28. #}
  29. # An example of an ESD output
  30. #audio_output {
  31. # type "ao"
  32. # driver "esd"
  33. # name "esd"
  34. #}
  35. # shout example
  36. #audio_output {
  37. # type "shout"
  38. # name "personal mpd stream"
  39. # host "127.0.0.1"
  40. # port "8000"
  41. # mount "/mpd"
  42. # quality "5.0"
  43. # format "44100:16:2"
  44. # user "source"
  45. # password "musicrockz"
  46. #}