Thank you for your donation!


Cloudsmith graciously provides open-source package management and distribution for our project.


Album art
#1
Hi
Just started using moode audio again after a while of. Realy like it Smile
When I scroll through my albums I notice that some album art looks awesome while other look like crap. Why is that? If I open the same file in windows it looks great.

Trond
Reply
#2
In Library Options You can control the resolution of the cover thumbs using the "Hi-res thumbnails" setting.

Covers are converted to Jpeg format using logic that attempts to maintain small file sizes and high image quality. The pixel ratio of the device is also considered. Generally is the source image is good quality the resulting thumbnail image will be same.

Code:
if ($hires_thm == 'Auto') {
    if ($pixel_ratio == 2) {
        $thm_w = 200;
        $thm_q = 75;
    }
    elseif ($pixel_ratio >= 3) {
        $thm_w = 400;
        $thm_q = 50;
    }
    else {
        $thm_w = 100;
        $thm_q = 75;
    }
}
else {
    // manual
    $thm_w = substr($hires_thm, 0, 3); // only the numeric part ex: 100px
    $thm_q = 75;
}
Enjoy the Music!
moodeaudio.org | Mastodon Feed | GitHub
Reply
#3
Thanks Smile
Changed from embedded to cover image and now it looks great Smile
Reply
#4
Coolness :-)
Enjoy the Music!
moodeaudio.org | Mastodon Feed | GitHub
Reply


Forum Jump: