|
#1
| ||||
| ||||
| advanced ID3 tagging? i have about a thousand tracks in my itunes which aren't part of any larger album, but still have album tags. as they're not part of a full album, it's starting to get messy, so i'd like to rename the album to something like 'other'. however, i'd still like to keep the information that's already there. ideally i'd like to move all the information from the 'album' tag to the 'comment' section instead. is there any mac tagging software that will allow me to do this?
__________________ Dual 1.8GHz G5 2GB, 1TB, Radeon 9600XT 128MB, 10.5 20" Apple Cinema Display + Dell 2005FPW 20" dual-head iBook G3 700MHz 640MB, 40GB, Rage128 16MB, 10.4, dying battery |
|
#2
| ||||
| ||||
| The great thing about iTunes is that it's scriptable. You can manipulate tags any way you want with the help of AppleScript. I wrote myself a script to do exactly what you need a while ago. Here it is: Code: tell application "iTunes" repeat with tracknum from 1 to the number of items of the selection set the_tag to the album of item tracknum of the selection set the_comment to the comment of item tracknum of the selection if the_comment does not contain the_tag then set the comment of item tracknum of the selection to (the_comment & the_tag) end repeat end tell I've also zipped it up and attached it here for convenience. I recommend putting it in ~/Library/iTunes/Scripts, so that it will be easily accessible from iTunes's own AppleScript menu. |
|
#3
| ||||
| ||||
| trust you to come up with a script, eh? cheers mikuro, your script knowledge is amazing, yet again....
__________________ Dual 1.8GHz G5 2GB, 1TB, Radeon 9600XT 128MB, 10.5 20" Apple Cinema Display + Dell 2005FPW 20" dual-head iBook G3 700MHz 640MB, 40GB, Rage128 16MB, 10.4, dying battery |