DaveBrennan Wrote: 
> 
> I haven't yet found a Linux tool which will migrate ID3 V1 tags to ID3
> V2 tags, but I live in hope if all else fails I feel a perl script
> coming on.

id3v2 does this.  as does eyeD3.

id3v2 --convert filename.mp3
or
eyeD3 --to-v2.3 filename.mp3

wrap with find if you want recursion.

find . -type f -iname \*.mp3 -exec id3v2 -C {} \;
would do it, I think.


-- 
snarlydwarf
------------------------------------------------------------------------
snarlydwarf's Profile: http://forums.slimdevices.com/member.php?userid=1179
View this thread: http://forums.slimdevices.com/showthread.php?t=25998

_______________________________________________
beta mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/beta

Reply via email to