iTunesSpy 1.2 – Release
5. Juli 2005Nun ist das zweite Update – Version 1.2 – für iTunesSpy veröffentlicht worden.
Es wurde ein Fehler behoben, der bei manchen Benutzern es unmöglich machte Tracks auf den Server zu laden.
Zu finden ist der iTunespy auf seiner Homepage, zu dieser geht’s hier.





Excellent Plug-in! Is there a way to change the image size
Jeff Swanson | 17. Juli 2005 | 10:45Excellent Plug-in!
Is there a way to change the image size for the artwork? I want to make it smaller.
Thanks!
I've added sample 5 in the support section of the
admin | 18. Juli 2005 | 13:55I’ve added sample 5 in the support section of the itunesspy homepage (crea-doo.at/itunesspy) which describes how to resize album art images.
I hope that helps…
Hey, Thanks Alot! I modded it a bit. You
Jeff Swanson | 20. Juli 2005 | 07:26Hey, Thanks Alot! I modded it a bit. You can see how it looks on my site: I need to do some tweaking to my CSS file, but the plug-in works great!
http://www.jeffswanson.com/blog
getLastTracks(1);
foreach ($tracks as $track) {
// load the track data into the variable
$track = $iTunesSpy->getTrack($track->id);
// set the width attribute to 100%…
// edit the width attribute for different image sizes
$Out .= $iTunesSpy->getTrackArtEx($track->art_id, ”, ‘src=”%art_large_url%” width=”100%” alt=”"‘);
$Out .= ”;
$schema = ”; //Clear the variable
$schema .= ”;
$schema .= ‘Artist: %artist%’;
$schema .= ‘Album: %album%’;
$schema .= ‘Title: %title%’;
$schema .= ‘Genre: %genre%’;
$schema .= ‘Year: %year%’;
$lastplayed = $iTunesSpy->getTrackLastPlayTime($track->id);
$schema .= ‘last played: ‘ . date($iTunesSpy->date_time_format, $lastplayed->date-(1000 * $iTunesSpy->gmt_offset)) .”;
$schema .= ‘played ‘ . $iTunesSpy->getTrackPlayTimesCount($track->id) . ‘ time(s)’;
$schema .= ”;
$playtimes = $iTunesSpy->getTrackPlayTimes($track->id);
$out_playtimes = ”; //Clear the variable
foreach ($playtimes as $playtime) {
$out_playtimes .= ” . date($iTunesSpy->date_time_format, $playtime->date-(1000 * $iTunesSpy->gmt_offset)) . ”;
}
$schema .= $out_playtimes;
$schema .= ”;
$schema .= ”;
$schema .= ”;
$Out .= $iTunesSpy->getTrackInfoEx($track->id, ”, ”, $schema);
}
echo $Out;
?>