mpd.conf 1.1 KB

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