Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. # For further information about options in this file see:
  2. # http://docs.mopidy.com/
  3. #
  4. # The initial commented out values reflect the defaults as of:
  5. # Mopidy 2.1.0
  6. # Mopidy-File 2.1.0
  7. # Mopidy-HTTP 2.1.0
  8. # Mopidy-Local 2.1.0
  9. # Mopidy-M3U 2.1.0
  10. # Mopidy-MPD 2.1.0
  11. # Mopidy-SoftwareMixer 2.1.0
  12. # Mopidy-Stream 2.1.0
  13. #
  14. # Available options and defaults might have changed since then,
  15.  
  16. # run `mopidy config` to see the current effective config and
  17. # `mopidy --version` to check the current version.
  18.  
  19. [core]
  20. cache_dir = $XDG_CACHE_DIR/mopidy
  21. config_dir = $XDG_CONFIG_DIR/mopidy
  22. data_dir = $XDG_DATA_DIR/mopidy
  23. max_tracklist_length = 10000
  24. restore_state = false
  25.  
  26. [logging]
  27. color = true
  28. console_format = %(levelname)-8s %(message)s
  29. debug_format = %(levelname)-8s %(asctime)s [%(process)d:%(threadName)s] %(name)s\n %(message)s
  30. debug_file = mopidy.log
  31. config_file =
  32.  
  33. [audio]
  34. mixer = software
  35. mixer_volume =
  36. output = autoaudiosink
  37. buffer_time =
  38.  
  39. [proxy]
  40. scheme =
  41. hostname =
  42. port =
  43. username =
  44. password =
  45.  
  46. [mpd]
  47. #enabled = true
  48. #hostname = 127.0.0.1
  49. #port = 6600
  50. #password =
  51. #max_connections = 20
  52. #connection_timeout = 60
  53. #zeroconf = Mopidy MPD server on $hostname
  54. #command_blacklist =
  55. # listall
  56. # listallinfo
  57. #default_playlist_scheme = m3u
  58.  
  59. [http]
  60. #enabled = true
  61. #hostname = 127.0.0.1
  62. #port = 6680
  63. #static_dir =
  64. #zeroconf = Mopidy HTTP server on $hostname
  65.  
  66. [stream]
  67. #enabled = true
  68. #protocols =
  69. # http
  70. # https
  71. # mms
  72. # rtmp
  73. # rtmps
  74. # rtsp
  75. #metadata_blacklist =
  76. #timeout = 5000
  77.  
  78. [m3u]
  79. #enabled = true
  80. #base_dir = $XDG_MUSIC_DIR
  81. #default_encoding = latin-1
  82. #default_extension = .m3u8
  83. #playlists_dir =
  84.  
  85. [softwaremixer]
  86. #enabled = true
  87.  
  88. [file]
  89. enabled = true
  90. media_dirs =
  91. $XDG_MUSIC_DIR|Music
  92. ~/|Home
  93. excluded_file_extensions =
  94. .jpg
  95. .jpeg
  96. show_dotfiles = false
  97. follow_symlinks = false
  98. metadata_timeout = 1000
  99.  
  100. [local]
  101. #enabled = true
  102. #library = json
  103. #media_dir = $XDG_MUSIC_DIR
  104. #scan_timeout = 1000
  105. #scan_flush_threshold = 100
  106. #scan_follow_symlinks = false
  107. #excluded_file_extensions =
  108. # .directory
  109. # .html
  110. # .jpeg
  111. # .jpg
  112. # .log
  113. # .nfo
  114. # .png
  115. # .txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement