Hi,
I need to fetch cached cover art from iTunes. Currently I'm working with the scripting bridge, but it only fetches covers that are embedded in the tracks. I've also tried this method here
http://stackoverflow.com/questions/1433035/fetch-itunes-album-artwork-without-itunes-running
but it seems to be broken (at least in iTunes 9.2). Any hints how to solve this?
Regards, Erik
Update
NSArray *artworks = [[track artworks] get];
for (CMTunesBridgeArtwork *art in artworks) {
ref.image = [art data];
break;
}