Re: iTunes 4 & Artwork scripting... Ahhh?
Re: iTunes 4 & Artwork scripting... Ahhh?
- Subject: Re: iTunes 4 & Artwork scripting... Ahhh?
- From: Chuck Toporek <email@hidden>
- Date: Tue, 29 Apr 2003 09:50:40 -0400
But you can get at it with Perl...
iTunes 4 stores 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!
Chuck
On Monday, April 28, 2003, at 07:57 PM, Graham Carter wrote:
Nope... I can't get anything either. Artwork isn't listed as a
property of track either. Is it not implemented or is the dictionary
incomplete?
-Graham
On Monday, April 28, 2003, at 04:27 PM, Jakob Peterhdnsel wrote:
Hi All.
Just been playing with iTunes 4 and artwork on tracks.
Just can't seem to get some feedback from iTunes when asking about
size
and format of artwork for current track.
Can you?
Jakob Peterhdnsel
Tiger, Jaguar, Panter... no, just 'The Danish Cat...' he...
Email: email@hidden
AIM: Marook
Phone: +45 40163806
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.
____________________________
Graham Carter
Systems Analyst I
Long Beach Memorial Heart Institute
Phone: (562) 933-3335
Pager: 3-17773
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.