From 036ced19c16e5fe9cdab244b40f8b14b31a32fe8 Mon Sep 17 00:00:00 2001 From: paul Date: Wed, 1 Nov 2017 23:39:05 +0000 Subject: [PATCH] limit thumb quality for faster page load svn path=/trunk/; revision=190 --- helpers/genthumb.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helpers/genthumb.sh b/helpers/genthumb.sh index 9a0c64a..2119d85 100755 --- a/helpers/genthumb.sh +++ b/helpers/genthumb.sh @@ -1,5 +1,5 @@ #!/bin/zsh -# Copyright 2014 - 2016 Paul Hänsch +# Copyright 2014 - 2017 Paul Hänsch # # This file is part of Serve0 # @@ -39,6 +39,6 @@ if [ -e "$video" -a \! -e "$thumb" ]; then -benchmark -vf framestep=I,scale="$width":-2 -ss "$(($cnt*$chunk))" "$video" >/dev/null 2>/dev/null mv "$tmp/00000001.jpg" "${tmp}/_${cnt}.jpg" done - montage "${tmp}"/_[1234].jpg -tile 2x2+0+0 -geometry 100x75+3+3 -background '#000000' "${thumb}" 2>/dev/null + montage "${tmp}"/_[1234].jpg -tile 2x2+0+0 -geometry 100x75+3+3 -background '#000000' -quality 50 "${thumb}" 2>/dev/null rm -r "${tmp}" fi -- 2.39.2