Automatically Use as-is for tracks with low match %? #4905
-
I have a directory of music which is already fairly well-tagged (carefully tagged by hand by myself.) Many of the albums are obscure and not in the MusicBrainz database. However, I still want to auto-tag the ones that are. Is there a setting to automatically select "Use as-is" for any albums with low match % candidates? For example, I want to: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I'm still wondering about the above, but I'll note that as a workaround for now I've decided to split it up into four steps:
|
Beta Was this translation helpful? Give feedback.
-
The part of the docs that you want is this part. The You can refer to this part of the docs to set the points at which each standard is met. You want something like this: import:
none_rec_action: asis
match:
strong_rec_thresh: 0.1
medium_rec_thresh: 0.4 Strong recommendations are automatically accepted, so this will use the autotagger for anything at 90% match or above. |
Beta Was this translation helpful? Give feedback.
The part of the docs that you want is this part. The
none_rec_option
is used when there are no recommendations for a match. You can set it in your configuration toasis
.You can refer to this part of the docs to set the points at which each standard is met. You want something like this:
Strong recommendations are automatically accepted, so this will use the autotagger for anything at 90% match or above.