]> git.plutz.net Git - serve0/blobdiff - thumbnail.sh
improved pipeline flow in category listing
[serve0] / thumbnail.sh
index f6d212ca8bedb5845d2841ed2151aa31206ff61f..8698627f37a538efd72e728100fad5a307ed4031 100644 (file)
@@ -13,10 +13,10 @@ gen_thumb(){
       | sed -rn 's:ID_LENGTH=(.*)(\..*)$:\1:p;' \
     )"
   
-    chunk="$((${l:-10} / 5))"
+    chunk="$((${l:-10} / 11))"
     
     tmp="$(mktemp -d)"
-    for cnt in 1 2 3 4; do
+    for cnt in 1 2 3 4 5 6 7 8 9 10; do
       printf '' \
       | mplayer -input nodefault-bindings -nosound -benchmark \
                 -noconfig all -really-quiet \
@@ -29,11 +29,12 @@ gen_thumb(){
     printf '' \
     | mplayer -input nodefault-bindings -nosound -benchmark \
               -noconfig all -really-quiet \
-              -vf scale=159:-2,tile=2:2:4:0:2 \
-              -vo jpeg:quality=96:outdir="${tmp}"\
+              -vf expand=:::::16/9,scale=320:-2,tile=10:1:10:0:0 \
+              -vo jpeg:quality=100:outdir="${tmp}"\
               "mf://$tmp/_*.jpg" 2>&-
   
-    mv "${tmp}/00000001.jpg" "$thumb"
+    #mv "${tmp}/00000001.jpg" "$thumb"
+    convert "${tmp}/00000001.jpg" -interlace line -quality 85 "$thumb"
     rm -r "${tmp}"
   fi
 }