Replies: 5 comments
-
It's even worse with some other example: There even the track number is correct and maintained, but still beets wants to change it to a different track. |
Beta Was this translation helpful? Give feedback.
-
Looks like you have files with bad/non-existing metadata. Beets is powerful, but this makes it hard to match correctly. So, your options are:
|
Beta Was this translation helpful? Give feedback.
-
While I agree, this is not the case in the second case. Both ID3 tags and file names match and are correct. The track # is also correct, but still beets wants to edit it (for worse). |
Beta Was this translation helpful? Give feedback.
-
Well, I'm not sure what's going on in your second case, but all in all it seems something is off. Because it also shows 11 unmatched tracks. I wonder why. |
Beta Was this translation helpful? Give feedback.
-
@guerda could you install I have had a look at your Deadmau5 import, see a couple of notes below: IssuesNotice that
Bad matches
This is why I love beets: seeing it I'd firstly question whether I'm trying to import the correct files. Otherwise, given that titles do not match and if the files do not contain any other metadata, the matches could have been resolved comparing the durations (which is always present in import files):
ConfigurationYou can influence matching by adjusting distance weights for each of the tags that match:
distance_weights:
album: 4.0
album_id: 2.0
albumdisambig: 4.5
artist: 4.0
catalognum: 3.0
country: 1.0
genre: 1.0
label: 3.0
media: 1.0
mediums: 1.0
missing_tracks: 0.0
source: 1.0
track_artist: 3.0
track_index: 1.0
track_id: 1.0
track_length: 9.0
track_title: 4.0
tracks: 4.0
unmatched_tracks: 0.5
year: 2.0
missing_fields: 5.0 This reads
Once you've ensured the validity of the files you're importing, try adjusting this configuration and see what happens. This of course depends on the data being available in the files' metadata that you're importing. |
Beta Was this translation helpful? Give feedback.
-
If the track number is not filled, beets (2.0 but also the previous version) confuses some titles:
Here's an example: Both files have the track number in their file name, but not in the track # tag.
beets now wants to (incorrectly) rename/tag one file to another one which exists and then name the correct one wrong, too.
Looks like this:
In sum, most of the files would be correctly tagged, but this would change the titles for worse.
Is there any idea how to solve this? I have the
fromfilename
plugin active.Beta Was this translation helpful? Give feedback.
All reactions