From b81f20a7fb07b28ee5d0844018c5586dc9b8fd50 Mon Sep 17 00:00:00 2001 From: jorgevasquezp Date: Tue, 21 Nov 2017 11:39:25 -0800 Subject: [PATCH] Increased the bitrate in the hq compression preset --- bash/make_hq_h264.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bash/make_hq_h264.sh b/bash/make_hq_h264.sh index fd3e338..fd4b431 100755 --- a/bash/make_hq_h264.sh +++ b/bash/make_hq_h264.sh @@ -1,4 +1,6 @@ +g=8; +vb=32M; for i; - do ffmpeg -i "$i" -c:v libx264 -profile:v high444 -pix_fmt yuv444p -q 0 -strict -2 -g 15 "${i%.*}_hq_h264.mov" ; + do ffmpeg -i "$i" -c:v libx264 -x264opts keyint=$g:scenecut=-1 -profile:v main -pix_fmt yuv420p -q 0 -strict -2 -vb $vb "${i%.*}_h264.mov" ; done;