Advertisement
Guest User

Untitled

a guest
Jun 4th, 2016
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. music_directory "~/Music/"
  2. playlist_directory "~/Playlists"
  3. db_file "~/.config/mpd/database"
  4. log_file "~/.config/mpd/log"
  5. pid_file "~/.config/mpd/pid"
  6. state_file "~/.config/mpd/mpdstate"
  7. auto_update "yes"
  8. audio_output {
  9. type "alsa" # Use the ALSA output plugin.
  10. name "ALSA" # Must be present and does not have to match the actual card name , e.g. what you have in /etc/asound.conf
  11. options "dev=dmixer"
  12. device "plug:dmix" # Both lines cause MPD to output to dmix
  13. format "44100:16:2" # the actual format
  14. auto_resample "no" # This bypasses ALSA's own algorithms, which generally are inferior. See below how to choose a different one.
  15. }
  16.  
  17. audio_output {
  18. type "fifo"
  19. name "my_fifo"
  20. path "/tmp/mpd.fifo"
  21. format "44100:16:2"
  22. }
  23.  
  24. bind_to_address "127.0.0.1"
  25. port "6601"
  26. mixer_type "software"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement