Semi manual mp3 file tagging

From zooid Wiki
Revision as of 20:01, 18 November 2010 by DavidM (talk | contribs) (Created page with ' If, like me (or you're me, trying to remember this), and have legacy mp3s organizes like this: artist/album/song but the mp3s aren't tagged, you can tag them like this: find …')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

If, like me (or you're me, trying to remember this), and have legacy mp3s organizes like this:

artist/album/song

but the mp3s aren't tagged, you can tag them like this:

find . -type d |while read d; do echo $d; find "$d" |grep mp3$|while read f; do echo " $f"; mp3info -a Autecture -l "$d" "$f"; done; done