hlechner / wwidd

Video library manager
http://wwidd.com
MIT License
0 stars 1 forks source link

Make the thumbnails bigger #37

Open hlechner opened 8 years ago

hlechner commented 8 years ago

Actual size: SQCIF(128 × 96 [4:3])

example of how to generate a 320x180 thumbnail with ffmpeg command line in linux:

ffmpeg -i file.wmv -f image2 -vframes 1 -aspect 16:9 -filter:vf scale="'if(gt(a,16/9),320,-1)':'if(gt(a,16/9),-1,180)', pad=w=320:h=180:x=(ow-iw)/2:y=(oh-ih)/2:color=black" -ss 15 output10.jpg

Wwidd file:

16:9:

Thumbnail size references:

Adult:

hlechner commented 8 years ago

However it needs to be adjusted on wwidd/NDVM client side (CSS) too.