Advertisement
Guest User

Volumio mpd.conf

a guest
Jan 17th, 2018
386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.94 KB | None | 0 0
  1. # Volumio MPD Configuration File
  2.  
  3. # Files and directories #######################################################
  4. music_directory "/var/lib/mpd/music"
  5. playlist_directory "/var/lib/mpd/playlists"
  6. db_file "/var/lib/mpd/tag_cache"
  7. #log_file "/var/log/mpd/mpd.log"
  8. #pid_file "/var/run/mpd/pid"
  9. #state_file "/var/lib/mpd/state"
  10. #sticker_file "/var/lib/mpd/sticker.sql"
  11. ###############################################################################
  12.  
  13. # General music daemon options ################################################
  14. user "mpd"
  15. group "audio"
  16. bind_to_address "any"
  17. #port "6600"
  18. #log_level "default"
  19. gapless_mp3_playback "no"
  20. #save_absolute_paths_in_playlists "no"
  21. #metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc"
  22. auto_update "yes"
  23. #auto_update_depth "3"
  24. ###############################################################################
  25. # Symbolic link behavior ######################################################
  26. follow_outside_symlinks "yes"
  27. follow_inside_symlinks "yes"
  28. ###############################################################################
  29. # Input #######################################################################
  30. #
  31. input {
  32. plugin "curl"
  33. # proxy "proxy.isp.com:8080"
  34. # proxy_user "user"
  35. # proxy_password "password"
  36. }
  37. ###############################################################################
  38.  
  39. # Decoder ################################################################
  40.  
  41.  
  42.  
  43.  
  44.  
  45. ###############################################################################
  46.  
  47. # Audio Output ################################################################
  48.  
  49. resampler {
  50. plugin "soxr"
  51. quality "high"
  52. threads "1"
  53. }
  54.  
  55. audio_output {
  56. type "alsa"
  57. name "alsa"
  58. device "hw:1,0"
  59. dop "no"
  60.  
  61.  
  62.  
  63. }
  64.  
  65.  
  66.  
  67.  
  68.  
  69. audio_output {
  70. type "fifo"
  71. enabled "no"
  72. name "multiroom"
  73. path "/tmp/snapfifo"
  74. format "44100:16:2"
  75. }
  76.  
  77. #replaygain "album"
  78. #replaygain_preamp "0"
  79. volume_normalization "no"
  80. ###############################################################################
  81.  
  82. # MPD Internal Buffering ######################################################
  83. audio_buffer_size "4096"
  84. buffer_before_play "10%"
  85. ###############################################################################
  86.  
  87.  
  88. # Resource Limitations ########################################################
  89. #connection_timeout "60"
  90. max_connections "20"
  91. max_playlist_length "32384"
  92. max_command_list_size "8192"
  93. max_output_buffer_size "16384"
  94. ###############################################################################
  95.  
  96. # Character Encoding ##########################################################
  97. filesystem_charset "UTF-8"
  98. id3v1_encoding "UTF-8"
  99. ###############################################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement