mpd.conf 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # An example configuration file for MPD
  2. user "mpd"
  3. auto_update "no"
  4. music_directory "/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. # An example of an ALSA output
  13. audio_output {
  14. type "alsa"
  15. name "My ALSA Device"
  16. device "hw:0,0"
  17. format "44100:16:2"
  18. }
  19. # An example of an ALSA output (USB soundcard)
  20. #audio_output {
  21. # type "alsa"
  22. # name "My ALSA Device"
  23. # device "hw:0,0"
  24. # format "44100:16:2"
  25. # mixer_type "hardware"
  26. # mixer_control "Speaker"
  27. #}
  28. # An example of an ESD output
  29. #audio_output {
  30. # type "ao"
  31. # driver "esd"
  32. # name "esd"
  33. #}
  34. # shout example
  35. #audio_output {
  36. # type "shout"
  37. # name "personal mpd stream"
  38. # host "127.0.0.1"
  39. # port "8000"
  40. # mount "/mpd"
  41. # quality "5.0"
  42. # format "44100:16:2"
  43. # user "source"
  44. # password "musicrockz"
  45. #}