pippin;311219 Wrote: 
> Have you tried that? My understanding is that the pre-cached formats are
> fixed.

Didn't try just happened to spot some code, didn't even check if
actually get executed.

*** From server\Slim\Music\Import.pm

# Post-process artwork, so we can use title formats, and use a generic
# image to speed up artwork loading.
Slim::Music::Artwork->findArtwork;

*** From server\Slim\Music\Artwork.pm

# Pre-cache this artwork resized to our commonly-used sizes/formats
# 1. user's thumb size or 100x100_p (large web artwork)
# 2. 50x50_p (small web artwork)
# 3. 56x56_o.jpg (Jive artwork - OAR JPG)
my @dims = (50);
push @dims, $prefs->get('thumbSize') || 100;
for my $dim ( @dims ) {
logger('scan.import')->debug( "Pre-caching artwork for trackid " .
$track->id . " at size ${dim}x${dim}_p" );
eval {Slim::Web::Graphics::processCoverArtRequest( undef, 'music/' .
$track->id . "/cover_${dim}x${dim}_p" );
};
}


-- 
markstrom
------------------------------------------------------------------------
markstrom's Profile: http://forums.slimdevices.com/member.php?userid=17691
View this thread: http://forums.slimdevices.com/showthread.php?t=46294

_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/plugins

Reply via email to