Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. music_directory "~/Music"
  2. playlist_directory "~/Playlists"
  3. db_file "~/.local/share/mpd/mpd.db"
  4. log_file "~/.local/share/mpd/mpd.log"
  5. pid_file "~/.local/share/mpd/mpd.pid"
  6. state_file "~/.local/share/mpd/mpd.state"
  7. sticker_file "~/.local/share/mpd/sticker.sql"
  8.  
  9. bind_to_address "127.0.0.1"
  10. log_level "default"
  11. restore_paused "yes"
  12. metadata_to_use "artist,album,title,track,name,genre,date"
  13. auto_update "yes"
  14.  
  15. input {
  16. plugin "curl"
  17. }
  18.  
  19. audio_output {
  20. type "pulse"
  21. name "pulse audio"
  22. }
  23.  
  24. audio_output {
  25. type "fifo"
  26. name "mpd_fifo"
  27. path "/tmp/mpd.fifo"
  28. format "44100:16:2"
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement