Duplicate plugin not detecting duplicates? #5247
-
Hello. Fresh database and I import the following folder as a test ls ~/music4/Dj.Mc/ I duplicate the album "Relentless" to test duplication function. All metadata and everything with the files is unchanged thus they should be duplicates. I import with /music4/Dj.Mc/Dj.Mc - 5,4,3,2,1 along with beet -ls get clear duplicates example: Dj.Mc - Relentless EP - 5,4,3,2,1 So I enable and run duplicates plugin and do beet duplicates which returns nothing. Am I doing something wrong here? Note in this particular test there was nothing important with MusicBrainz as none of these albums/eps/singles were detected. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The default behavior of the duplicates plugin is to match keys: From the plugin page: Get tracks with the same title, artist, and album: |
Beta Was this translation helpful? Give feedback.
The default behavior of the duplicates plugin is to match keys:
mb_trackid
andmb_albumid
. If those are not present, it won't match. This is probably the case here, since you imported the files without tagging them.From the plugin page: Get tracks with the same title, artist, and album:
beet duplicates -k title -k albumartist -k album
.