Some of my files have track number and total tracks listed. I would like to remove the total tracks part of this field - is there anyway to do this automatically for multiple files (basically I'm looking to handle this as a seperate field rather than having to handle two fields in one).
The fastest way i know is the autonumbering wizard (icon in the toolbar or tools menu), as long as the tracks show in the right order in mp3tag.
If your albums are in a folder each, you can tick the reset counter for each directory option in the wizard so that you dont have to repeat the process on each album.
Thank you. Could you tell me how to make it so that when you copy the total track number to the separate field, it shows with a leading zero? ie. track x/8 becomes '08' in the tracktotal field?
create an action of the type Format Tag field for TotalTRACK and enter as format string:
$num(%totaltrack%,2)
for 2 digits per totaltracknumber or
$num(%totaltrack%,3)
for 3 digits per totaltracknumber.