1
0

mpd.conf 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # An example configuration file for MPD
  2. user "mpd"
  3. auto_update "no"
  4. music_directory "/data/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 "software"
  13. # An example of an ALSA output
  14. audio_output {
  15. type "alsa"
  16. name "My ALSA Device"
  17. device "hw:0,0"
  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. #}