pow
Premium Member
Registered: 11th Sep 06
Location: Hazlemere, Buckinghamshire
User status: Offline
|
For the life of me I can't remember this.
I've written a batch file that will extract the ID3V2 tags (Title and Track Number), store them as environment variables, rename the title to "%TrackNo% - %CurTitle%" and then delete the environment variables, ready for the next input, but, I cannot for the life of me rememeber how I would set this going for a folder full of songs.
I know it's going to be something like:
FOR /F %%A in ('dir C:\blah\blah\') DO CALL ...
but it isn't happening.
Help!
|
pow
Premium Member
Registered: 11th Sep 06
Location: Hazlemere, Buckinghamshire
User status: Offline
|
Idiot, you have to use %1 in the actual command thats why
|
noshua
Member
Registered: 19th Nov 08
User status: Offline
|
Can I ask what you're using this for..?
|
pow
Premium Member
Registered: 11th Sep 06
Location: Hazlemere, Buckinghamshire
User status: Offline
|
"I've written a batch file that will extract the ID3V2 tags (Title and Track Number), store them as environment variables, rename the title to "%TrackNo% - %CurTitle%" and then delete the environment variables, ready for the next input,"
The Alfa plays my songs of my iPod in bloody track name order, not track order, so I'm appending the track number to the beginning of the track name.,
|
Dom
Member
Registered: 13th Sep 03
User status: Offline
|
Why didn't you use Mp3tag (http://www.mp3tag.de/en/)?
|
pow
Premium Member
Registered: 11th Sep 06
Location: Hazlemere, Buckinghamshire
User status: Offline
|
Because it doesn't do what I want it to do
|
Dom
Member
Registered: 13th Sep 03
User status: Offline
|
quote: Originally posted by pow
Because it doesn't do what I want it to do
'appending track number to the beginning of the track name' - Mp3tag will do that, use the tag - filename option.
|
pow
Premium Member
Registered: 11th Sep 06
Location: Hazlemere, Buckinghamshire
User status: Offline
|
Sorry, perhaps I wasn't as clear as I wanted to me. It's the title MP3 tag I want to change in mass, not the filename
|
Dom
Member
Registered: 13th Sep 03
User status: Offline
|
quote: Originally posted by pow
Sorry, perhaps I wasn't as clear as I wanted to me. It's the title MP3 tag I want to change in mass, not the filename
Use Mp3tag 'Actions' and create a new action to reformat the Title (tag doesn't show in the drop-downs, still works though) tag (Format Value Title: %track% - %title%). Then you can apply that to selected mp3s. Had to do something similar in the past (could have export the action for you), hence why i mentioned it.
[Edited on 06-07-2011 by Dom]
|
pow
Premium Member
Registered: 11th Sep 06
Location: Hazlemere, Buckinghamshire
User status: Offline
|
Phaa I've done it this way now
|