@@ -13,15 +13,19 @@ Using Plugins
13
13
-------------
14
14
15
15
To use one of the plugins included with beets (see the rest of this page for a
16
- list), just use the ``plugins `` option in your :doc: `config.yaml </reference/config >` file, like so::
16
+ list), just use the ``plugins `` option in your :doc: `config.yaml </reference/config >` file:
17
+
18
+ .. code-block :: sh
17
19
18
20
plugins: inline convert web
19
21
20
22
The value for ``plugins `` can be a space-separated list of plugin names or a
21
23
YAML list like ``[foo, bar] ``. You can see which plugins are currently enabled
22
24
by typing ``beet version ``.
23
25
24
- Each plugin has its own set of options that can be defined in a section bearing its name::
26
+ Each plugin has its own set of options that can be defined in a section bearing its name:
27
+
28
+ .. code-block :: yaml
25
29
26
30
plugins : inline convert web
27
31
@@ -30,10 +34,11 @@ Each plugin has its own set of options that can be defined in a section bearing
30
34
31
35
Some plugins have special dependencies that you'll need to install. The
32
36
documentation page for each plugin will list them in the setup instructions.
33
- For some, you can use ``pip ``'s "extras" feature to install the dependencies,
34
- like this::
37
+ For some, you can use ``pip ``'s "extras" feature to install the dependencies:
35
38
36
- pip install beets[fetchart,lyrics,lastgenre]
39
+ .. code-block :: sh
40
+
41
+ pip install " beets[fetchart,lyrics,lastgenre]"
37
42
38
43
.. _metadata-source-plugin-configuration :
39
44
@@ -48,7 +53,9 @@ plugins share the following configuration option:
48
53
Default: ``0.5 ``.
49
54
50
55
For example, to equally consider matches from Discogs and MusicBrainz add the
51
- following to your configuration::
56
+ following to your configuration:
57
+
58
+ .. code-block :: yaml
52
59
53
60
plugins : discogs
54
61
@@ -111,6 +118,7 @@ following to your configuration::
111
118
missing
112
119
mpdstats
113
120
mpdupdate
121
+ musicbrainz
114
122
parentwork
115
123
permissions
116
124
play
@@ -142,21 +150,26 @@ Autotagger Extensions
142
150
Use acoustic fingerprinting to identify audio files with
143
151
missing or incorrect metadata.
144
152
153
+ :doc: `deezer <deezer >`
154
+ Search for releases in the `Deezer `_ database.
155
+
145
156
:doc: `discogs <discogs >`
146
157
Search for releases in the `Discogs `_ database.
147
158
159
+ :doc: `fromfilename <fromfilename >`
160
+ Guess metadata for untagged tracks from their filenames.
161
+
162
+ :doc: `musicbrainz <musicbrainz >`
163
+ Search for releases in the `MusicBrainz `_ database.
164
+
148
165
:doc: `spotify <spotify >`
149
166
Search for releases in the `Spotify `_ database.
150
167
151
- :doc: `deezer <deezer >`
152
- Search for releases in the `Deezer `_ database.
153
-
154
- :doc: `fromfilename <fromfilename >`
155
- Guess metadata for untagged tracks from their filenames.
156
168
157
- .. _Discogs : https://www.discogs.com/
169
+ .. _Deezer : https://www.deezer.com
170
+ .. _Discogs : https://www.discogs.com
171
+ .. _MusicBrainz : https://www.musicbrainz.com
158
172
.. _Spotify : https://www.spotify.com
159
- .. _Deezer : https://www.deezer.com/
160
173
161
174
Metadata
162
175
--------
0 commit comments