Maybe someone can help me with this problem. I have done a search of the FAQ and this forum but can't find an answer to this question. When browsing by album using the handheld skin on a PDA, when selecting an album, the cover art, when present, is displayed at whatever size it happens to be, so it can be the size of a postahe stamp or you can only see the top left hand corner. Is there any setting that can set the cover art to always display at 100x100 or 175x175.
There's no user configurable setting, except if you know a little bit html: edit HTML/Handheld/browsedb.html. You'll find the following lines:
[% IF coverArt %]
<p><a href="/music/[% coverArt %]/cover.jpg" target="cover"><img src="/music/[% coverArt %]/thumb.jpg"></a></p>
[% END %]
Change this to something like this:
<p><a href="/music/[% coverArt %]/cover.jpg" target="cover"><img src="/music/[% coverArt %]/thumb.jpg" width="175" height="175"></a></p>
</a></p>
This will fix the size to 175 pixel (even if the ratio of the original file is different).
The Handheld skin is using the thumb.jpg, if available. I've therefore started to have two artwork files per album: thumb.* (about 120x120) and cover.*.
There's a script around which will automatically download them from amazon (http://www.pfarrell.com/music/slimserver/slimsoftware.html). I've never tried it, though.
--
Michael
----------------------------------------------------------- Help translate SlimServer by using the StringEditor Plugin (http://www.herger.net/slim/)
_______________________________________________ Discuss mailing list [email protected] http://lists.slimdevices.com/lists/listinfo/discuss
