mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
start documentation
This commit is contained in:
parent
7fa274e1cd
commit
0c2d92cf68
1 changed files with 42 additions and 0 deletions
42
docs/plugins/series.rst
Normal file
42
docs/plugins/series.rst
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
Series Plugin
|
||||
=================
|
||||
|
||||
The ``series`` plugin fetches the series metadata from MusicBrainz,
|
||||
saving into these fields.
|
||||
|
||||
- **mb_seriesid**: The MusicBrainz id of the series.
|
||||
- **series**: The title of the series
|
||||
- **volume**: The order of the album in the series
|
||||
|
||||
Usage
|
||||
-----
|
||||
To use the ``series`` plugin, enable it in your configuration
|
||||
(see :ref:`using-plugins`).
|
||||
|
||||
Configuration
|
||||
-------------
|
||||
|
||||
To configure the plugin, make a ``series:`` section in your
|
||||
configuration file. The available options are:
|
||||
|
||||
- **items_per_page**: The maximum number of items per query
|
||||
Default: `10`
|
||||
|
||||
- **fields**: The mapping between the plugin fields and your tags.
|
||||
Each field has these options:
|
||||
|
||||
- **field_name**: The name of your tag.
|
||||
- **write**: If you want to write this field in the database.
|
||||
Default: `True`
|
||||
|
||||
The configuration keys are `id`, `name` and `volume` for `mb_seriesid`,
|
||||
`series` and `volume`.
|
||||
|
||||
Example: You already use the `volume` field for audio loudness,
|
||||
so you want to change the tag name to `series_volume`.
|
||||
::
|
||||
series:
|
||||
fields:
|
||||
volume:
|
||||
field_name: 'series_volume'
|
||||
|
||||
Loading…
Reference in a new issue