Increased the bitrate in the hq compression preset

This commit is contained in:
jorgevasquezp
2017-11-21 11:39:25 -08:00
parent 56bb488cf4
commit b81f20a7fb
+3 -1
View File
@@ -1,4 +1,6 @@
g=8;
vb=32M;
for i; 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; done;