iTunes 4 can store album cover art in the MP3 tag.
perl -MMP3::Info -e '
$file = shift;
$x = get_mp3tag($file, 2, 2);
($i = $x->{PIC}) =~ s/^(....).//;
($e = $1) =~ s/\W//g;
$file =~ s/\.mp3/.$e/;
open $f, ">", $file;
print $f $i;
' song.mp3
This can extract it!
Not normalized (Score:3, Insightful)
Maybe I've been working with databases too much, but doesn't it seem a little redundant to put the album cover art in each file?
Still cool, though!
J. David works really hard, has a passion for writing good software, and knows many of the world's best Perl programmers
Reply to This
Re:Not normalized (Score:3, Insightful)
Re:Not normalized (Score:3, Insightful)
Yes.
Also, note that you can have different images on each file.
--
xoa