mirror of
https://github.com/beetbox/beets.git
synced 2026-01-08 08:56:56 +01:00
No media are ignored by default (#2776)
We determined on the PR thread that ignoring video tracks is enough, and ignoring typically-video media has more pitfalls.
This commit is contained in:
parent
24956b53cc
commit
bfeb678e41
2 changed files with 10 additions and 7 deletions
|
|
@ -127,7 +127,7 @@ match:
|
|||
original_year: no
|
||||
ignored: []
|
||||
required: []
|
||||
ignored_media: ['Data CD', 'DVD', 'DVD-Video', 'Blu-ray', 'HD-DVD', 'VCD', 'SVCD', 'UMD', 'VHS']
|
||||
ignored_media: []
|
||||
ignore_video_tracks: yes
|
||||
track_length_grace: 10
|
||||
track_length_max: 30
|
||||
|
|
|
|||
|
|
@ -789,13 +789,16 @@ No tags are required by default.
|
|||
ignored_media
|
||||
~~~~~~~~~~~~~
|
||||
|
||||
By default a list of release media formats considered not containing audio will
|
||||
be ignored. If you want them to be included (for example if you would like to
|
||||
consider the audio portion of DVD-Video tracks) you can alter the list
|
||||
accordingly.
|
||||
A list of media (i.e., formats) in metadata databases to ignore when matching
|
||||
music. You can use this to ignore all media that usually contain video instead
|
||||
of audio, for example::
|
||||
|
||||
match:
|
||||
ignored_media: ['Data CD', 'DVD', 'DVD-Video', 'Blu-ray', 'HD-DVD',
|
||||
'VCD', 'SVCD', 'UMD', 'VHS']
|
||||
|
||||
No formats are ignored by default.
|
||||
|
||||
Default: ``['Data CD', 'DVD', 'DVD-Video', 'Blu-ray', 'HD-DVD', 'VCD', 'SVCD',
|
||||
'UMD', 'VHS']``.
|
||||
|
||||
.. _ignore_video_tracks:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue