mirror of
https://github.com/beetbox/beets.git
synced 2025-12-24 17:43:52 +01:00
docs/changelog for convert paths config (#285)
This commit is contained in:
parent
418bf9d8aa
commit
26682f9168
3 changed files with 9 additions and 3 deletions
|
|
@ -185,7 +185,7 @@ class ConvertPlugin(BeetsPlugin):
|
|||
u'max_bitrate': 500,
|
||||
u'embed': True,
|
||||
u'auto': False,
|
||||
u'paths': dict(),
|
||||
u'paths': {},
|
||||
})
|
||||
self.import_stages = [self.auto_convert]
|
||||
|
||||
|
|
|
|||
|
|
@ -24,6 +24,9 @@ Changelog
|
|||
* The :ref:`modify-cmd` now correctly converts types when modifying non-string
|
||||
fields. You can now safely modify the "comp" flag and the "year" field, for
|
||||
example. Thanks to Lucas Duailibe.
|
||||
* :doc:`/plugins/convert`: You can now configure the path formats for
|
||||
converted files separately from your main library. Thanks again to Lucas
|
||||
Duailibe.
|
||||
* The importer output now shows the number of audio files in each album.
|
||||
Thanks to jayme on GitHub.
|
||||
* :doc:`/plugins/lyrics`: Lyrics searches should now turn up more results due
|
||||
|
|
|
|||
|
|
@ -62,8 +62,9 @@ The plugin offers several configuration options, all of which live under the
|
|||
importer will transcode all non-MP3 files over the maximum bitrate before
|
||||
adding them to your library.
|
||||
* ``paths`` lets you specify the directory structure and naming scheme for the
|
||||
converted files (and only them), i.e. it does not affect the path formats of
|
||||
imported files. (see :doc:`/reference/pathformat`)
|
||||
converted files. Use the same format as the top-level ``paths`` section (see
|
||||
:ref:`path-format-config`). By default, the plugin reuses your top-level
|
||||
path format settings.
|
||||
* Finally, ``threads`` determines the number of threads to use for parallel
|
||||
encoding. By default, the plugin will detect the number of processors
|
||||
available and use them all.
|
||||
|
|
@ -76,3 +77,5 @@ Here's an example configuration::
|
|||
opts: -aq 4
|
||||
dest: /home/user/MusicForPhone
|
||||
threads: 4
|
||||
paths:
|
||||
default: $albumartist/$title
|
||||
|
|
|
|||
Loading…
Reference in a new issue