From 33e35165c8dde2f65dc9fab74212e1a498cbdebe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20V=C3=A1squez=20P=C3=A9rez?= Date: Thu, 16 Nov 2017 09:59:52 -0800 Subject: [PATCH] Updated the review script with new compression specs --- bash/make_review.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bash/make_review.sh b/bash/make_review.sh index be34544..3d374b5 100755 --- a/bash/make_review.sh +++ b/bash/make_review.sh @@ -1,4 +1,6 @@ +crf=18 +vb=.5MB for i; - do ffmpeg -i "$i" -s 960x540 -c:v libx264 -profile:v main -pix_fmt yuv420p -strict -2 "${i%.*}_h264.mov" ; + do ffmpeg -i "$i" -s 960x540 -c:v libx264 -profile:v main -crf $crf -vb $vb -pix_fmt yuv420p -strict -2 "${i%.*}_h264.mov" ; done;