Advertisement
Guest User

mpd

a guest
Jan 26th, 2015
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1.  
  2. user "noname"
  3. music_directory "/home/noname/music"
  4. playlist_directory "/home/noname/.mpd/playlists"
  5. db_file "/home/noname/.mpd/db"
  6. log_file "/home/noname/.mpd/mpd.log"
  7. pid_file "/home/noname/.mpd/pid"
  8. state_file "/home/noname/.mpd/mpdstate"
  9. sticker_file "/home/noname/.mpd/sticker.sql"
  10. bind_to_address "127.0.0.1"
  11. #bind_to_address "any"
  12. port "6600"
  13. #
  14. # Controls the amount of information that is logged. Can be
  15. # "default", "secure", or "verbose".
  16. #
  17. #log_level "default"
  18. #
  19. ################################################################
  20.  
  21. ########################## AUDIO OUTPUT ########################
  22. #
  23. # MPD supports many audio output types, as well as playing
  24. # through multiple audio outputs at the same time. You can
  25. # specify one or more here. If you don't specify any, MPD will
  26. # automatically scan for a usable audio output.
  27. #
  28. # See <http://mpd.wikia.com/wiki/Configuration#Audio_Outputs>
  29. # for examples of other audio outputs.
  30. #
  31. # An example of an ALSA output:
  32. #
  33. audio_output {
  34. type "alsa"
  35. name "My ALSA Device"
  36. device "hw:0,0"
  37. format "44100:16:2"
  38. mixer_device "default"
  39. mixer_control "Master"
  40. }
  41. audio_output {
  42. type "fifo"
  43. name "my_fifo"
  44. path "/tmp/mpd.fifo"
  45. format "44100:16:2"
  46. }
  47. #
  48. ############################# MIXER ############################
  49. #
  50. # MPD needs to know what mixer settings to change when you
  51. # adjust the volume. If you don't specify one here, MPD will
  52. # pick one based on which ones it was compiled with support for.
  53. #
  54. # An example for controlling an ALSA mixer:
  55. #
  56. mixer_type "alsa"
  57. #mixer_device "default"
  58. #mixer_control "PCM"
  59. #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement