Advertisement
Guest User

Untitled

a guest
Oct 14th, 2015
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 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 1.1.0
  6. # Mopidy-ALSAMixer 1.0.3
  7. # Mopidy-File 1.1.0
  8. # Mopidy-HTTP 1.1.0
  9. # Mopidy-Local 1.1.0
  10. # Mopidy-Local-SQLite 0.10.3
  11. # Mopidy-M3U 1.1.0
  12. # Mopidy-MPD 1.1.0
  13. # Mopidy-Podcast 1.1.1
  14. # Mopidy-Podcast-GPodder 1.0.0
  15. # Mopidy-Scrobbler 1.1.1
  16. # Mopidy-SoftwareMixer 1.1.0
  17. # Mopidy-Stream 1.1.0
  18. #
  19. # Available options and defaults might have changed since then,
  20. # run `mopidy config` to see the current effective config and
  21. # `mopidy --version` to check the current version.
  22.  
  23. [core]
  24. cache_dir = $XDG_CACHE_DIR/mopidy
  25. config_dir = $XDG_CONFIG_DIR/mopidy
  26. data_dir = $XDG_DATA_DIR/mopidy
  27. max_tracklist_length = 10000
  28.  
  29. [logging]
  30. color = true
  31. console_format = %(levelname)-8s %(message)s
  32. debug_format = %(levelname)-8s %(asctime)s [%(process)d:%(threadName)s] %(name)s\n %(message)s
  33. debug_file = mopidy.log
  34. config_file =
  35.  
  36. [audio]
  37. mixer = software
  38. mixer_volume =
  39. output = autoaudiosink
  40.  
  41. [proxy]
  42. enabled = false
  43. scheme =
  44. hostname =
  45. port =
  46. username =
  47. password =
  48.  
  49. [scrobbler]
  50. enabled = false
  51. #username =
  52. #password =
  53.  
  54. [mpd]
  55. enabled = false
  56. hostname = 192.168.1.111
  57. port = 6666
  58. #password =
  59. max_connections = 2
  60. #connection_timeout = 60
  61. #zeroconf = Mopidy MPD server on $hostname
  62. #command_blacklist =
  63. # listall
  64. # listallinfo
  65.  
  66. [http]
  67. enabled = false
  68. #hostname = 127.0.0.1
  69. #port = 6680
  70. #static_dir =
  71. #zeroconf = Mopidy HTTP server on $hostname
  72.  
  73. [stream]
  74. enabled = false
  75. #protocols =
  76. # http
  77. # https
  78. # mms
  79. # rtmp
  80. # rtmps
  81. # rtsp
  82. #metadata_blacklist =
  83. #timeout = 5000
  84.  
  85. [m3u]
  86. enabled = false
  87. #playlists_dir = $XDG_DATA_DIR/mopidy/m3u
  88.  
  89. [softwaremixer]
  90. enabled = true
  91.  
  92. [file]
  93. enabled = true
  94. media_dirs = /media/Multimedia/Audio/FLAC/
  95. # $XDG_MUSIC_DIR|Music
  96. # ~/|Home
  97. #show_dotfiles = false
  98. #follow_symlinks = false
  99. #metadata_timeout = 1000
  100.  
  101. [local]
  102. enabled = true
  103. library = json
  104. media_dir = /media/Multimedia/Audio/FLAC/
  105. data_dir = $XDG_DATA_DIR/mopidy/local
  106. scan_timeout = 1000
  107. scan_flush_threshold = 1000
  108. scan_follow_symlinks = false
  109. excluded_file_extensions =
  110. .directory
  111. .html
  112. .jpeg
  113. .jpg
  114. .log
  115. .nfo
  116. .png
  117. .txt
  118.  
  119. [podcast-gpodder]
  120. enabled = false
  121. #base_url = http://gpodder.net/
  122. #root_name = gpodder.net
  123. #tag_format = {tag}
  124. #podcast_format = {title}
  125. #count = 20
  126. #timeout = 10
  127.  
  128. [podcast]
  129. enabled = false
  130. #browse_limit = 100
  131. #search_limit = 20
  132. #search_details = false
  133. #update_interval = 86400
  134. #feeds =
  135. #feeds_root_name = Subscribed Feeds
  136. #feeds_cache_size = 32
  137. #feeds_cache_ttl = 3600
  138. #feeds_timeout = 10
  139.  
  140. [alsamixer]
  141. #enabled = true
  142. #card = 0
  143. #control = Master
  144.  
  145. [local-sqlite]
  146. enabled = false
  147. #directories =
  148. # Albums local:directory?type=album
  149. # Artists local:directory?type=artist
  150. # Composers local:directory?type=artist&role=composer
  151. # Folders local:directory:
  152. # Genres local:directory?type=genre
  153. # Performers local:directory?type=artist&role=performer
  154. # Release Years local:directory?type=date&format=%25Y
  155. # Tracks local:directory?type=track
  156. # Last Week's Updates local:directory?max-age=604800
  157. # Last Month's Updates local:directory?max-age=2592000
  158. #timeout = 10
  159. #use_album_mbid_uri = true
  160. #use_artist_mbid_uri = false
  161. #search_limit = -1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement