Greetings Everyone. Long time user of mp3tag, and it has saved me countless of hours for both my personal music collection and for my DJ company...
Anyway - I have a collection that with both sets listed above totals around 19,000 tracks. One of the things i am trying to do is to remove duplicate artist entries for which there is an artist and then the same artist with a leading "The". I want to have them all formatted the same.
Example:
Track name: Yellow Submarine
Artist name: The Beatles
Track Name: Hey Jude
Artist Name: Beatles
Now what I would like to do is to be able to SORT or FILTER by artists with AND without the leading "THE", and then rename the artists as needed or delete duplicate songs.
The problem is, I am unsure of WHICH artists the leading "The" may effect. I have come across Moody Blues/The Moody Blues; Beatles/The Beatles, and a multiple others.
Is there any sort or filter function to be able to EASILY locate the duplicate artists with and without the "The"????
Thanks for the help, you all have been huge helps over the last few years!
To filter artist with a leading The use
%artist% MATCHES ^The
You will have to treat them manually anyway as there are artists that need the "the" like "The Band" or "The The".
As MP3tag does not compare two tracks, it cannot judge whether there are diverging entries. You would have to do that.
Using the above filter will at least show you those with a leading The in the name. These should not be too many.
No, there is no filter so something like that as MP3tag does not compare the contents of different files.
You would have to create a report and use an external programme to find the differences.
Almost there .
%artist% MATCHES ^The
It matches "The The", "The Beatles" but also "Them" and "These Green eyes".
Use %ARTIST% MATCHES "^The\b" to avoid such (rather rare) cases.
Someone would point the artist "The" (not The The). Well, use ARTIST% MATCHES "^The\b." to be perfect.
The metasep-function lets you see the contents of several fields of the same type in one string.
You will find out if you have such files with
NOT "$meta(artist,1)" IS ""
If you have tagged your compilations and soundtracks in a different way, you would have to give a concrete example for hints on filters.
After you have filtered, you may apply an action to modify the files (you may actually apply an action also without filtering ;-))