1 ########################################################################
3 # If you need special settings, rename this file as mpd_sima.cfg within
4 # your $XDG_CONFIG_HOME (default is $HOME/.config/mpd_sima/)
5 # You can also call it with --config option.
7 # cf. man 5 mpd_sima.cfg
8 ########################################################################
10 ########################## MPD SECTION ################################
14 # type: string (IP or FQDN)
15 # description: MPD host
21 # description: MPD host port
27 # default: unset, not using authentication
28 # description: MPD host password, comment if you don't use
32 #######################################################################
34 ######################## LOGGING FACILITY #############################
38 # type: string (file path)
39 # description: file to log to. Usually used in daemon mode.
40 # default: unset, logging to stdin/stdout
45 # description: log verbosity
48 # * debug, PAY ATTENTION: *DEBUG LEVEL MIGHT PRINT OUT YOUR PASSWORD*
55 #######################################################################
58 ######################## SIMA CORE ####################################
60 # These settings deal with MPD_sima core behaviour.
63 # type: comma separated string list
65 # contrib = Scrobble, AwesomePlugin,
66 # ExperimentalTest, AnotherTest
68 # internal = "Crop, Lastfm, RandomFallBack"
70 # description: Plugins list declaration.
71 # Optional plugin's configuration lays in its own section.
72 # For instance a "AwesomePlugin" declared here
73 # gets its configuration from the corresponding section:
75 # internal plugins will look for a section named after the lower-cased name
76 # of the pluglin, ie. RandomFallBack → randomfallback.
78 # Two plugins sources are available, internal and contrib
80 internal = Crop, Lastfm, RandomFallBack
84 # type: integer (in hours)
86 # description: How far to look back in history to avoid to play twice the same
91 ## USER_DB # NOT IMPLEMENTED #
93 # description: Load user database to find similar artists
94 # User DB is loaded from $XDG_CONFIG_HOME/mpd_sima/sima.db
95 # Use simadb_cli to edit/add entries.
101 # description: Queue length triggering tracks addition
104 ######################### PLUGINS #####################################
109 # default: unset, not cropping playlist
110 # description: How many played tracks to keep in the playlist.
111 # Allow to maintain a fixed length playlist.
112 # Leave commented to keep all tracks
119 # description: When no similar tracks are found, falling back to random
120 # queuing. Different mode, aka random flavour, are available.
122 # * pure: complete random choice among all tracks available in the
123 # player media library
124 # * sensible: use play history to filter chosen tracks
125 # * genre: # NOT IMPLEMENTED #
126 # chose among the same genre as current track (using genre
127 # tag). If no genre tag is available "sensible" flavour
133 # description: how many tracks the plugin will try to get
143 # description: The default is to queue random tracks from similar artists.
145 # track : Will queue tracks from similar artists (default).
146 # top : Will queue top tracks from similar artists.
147 # album : Will queue whole album from similar artists.
152 # description: Number of similar artist to retrieve from local media library.
153 # When set to something superior to zero, MPD_sima tries to get as much similar
154 # artists from media library
158 # type: integer in [1, +∞]
165 # scope: "track" and "top" queue modes
166 # description: Prevent from queueing a track from the same album (for instance
172 # scope: "track" and "top" queue modes
173 # description: how many tracks the plugin will try to get
178 # scope: "album" queue mode
179 # description: how many albums the plugin will try to get
184 # description: whether or not to use on-disk persistent http cache
185 # * When set to "true", sima will use a persistent cache for its http client.
186 # The cache is written along with the dbfile in:
187 # $XDG_CONFIG_HOME/mpd_sima/http/<web_service>
188 # Toggling http cache is only available for last.fm. EchoNest have rate limits,
189 # we must then pay attention to bandwidth and use of caching is required.
190 # * If set to "false", caching is still done but in memory.
195 ####################### END OF CONFIGURATION ##########################
196 # vim: syntax=cfg fileencoding=utf-8