N00b help - track numbers

Hi all,

I’m probably being stupid, but I’ve been going around in circles.

I want my music to be:

music\artist\album\song.mp3

However, I’m getting:

music\artist\album\01. song.mp3

How do I get rid of the 01. ??

My current script is:

$if2(%albumartist%,%artist%)/$if($ne(%albumartist%,),%album%/,)$if($gt(%totaldiscs%,1),Disc %discnumber%/,)$if($gt(%totaldiscs%,1),%discnumber%-,)$if($ne(%albumartist%,),)- $if($eq(%albumartist%,Various Artists),%artist% - %title%,%title%)

Anyone got any ideas??

Maybe the "01. " is already part of the title tag for your files? I have seen this for files. If you are saving local files without matching them to MusicBrainz tags it could be that the local tags are being used.

But if you are tagging against data from MusicBrainz the title tags should not contain track numbers. In this case I could only imagine that you maybe have a script that does this!?

2 Likes

This is a null piece of code.

Also I would suggest that you use $if(%_multiartist%,...) rather than $if($eq(%albumartist%,Various Artists),...) because it is not just VA albums that can have different artists per track.

2 Likes