Update PDF capture command.

This commit is contained in:
Lars Jung 2014-11-30 23:03:45 +01:00
parent a5687fe03b
commit 7f1c17043e
2 changed files with 1 additions and 4 deletions

View file

@ -4,7 +4,7 @@ class Thumb {
private static $FFMPEG_CMDV = array("ffmpeg", "-ss", "0:01:00", "-i", "[SRC]", "-an", "-vframes", "1", "[DEST]");
private static $AVCONV_CMDV = array("avconv", "-ss", "0:01:00", "-i", "[SRC]", "-an", "-vframes", "1", "[DEST]");
private static $CONVERT_CMDV = array("convert", "-strip", "[SRC][0]", "[DEST]");
private static $CONVERT_CMDV = array("convert", "-density", "200", "-quality", "100", "-sharpen", "0x1.0", "-strip", "[SRC][0]", "[DEST]");
private static $THUMB_CACHE = "thumbs";