Created a compression script template for 540p h264s

This commit is contained in:
jorgevasquezp
2017-11-21 11:35:51 -08:00
parent e5ce4ce502
commit f4781e3f6f
+6
View File
@@ -0,0 +1,6 @@
g=6;
vb=16M;
for i;
do ffmpeg -i "$i" -s 960x540 -c:v libx264 -x264opts keyint=$g:scenecut=-1 -profile:v main -pix_fmt yuv420p -q 0 -strict -2 -vb $vb "${i%.*}_960x540_h264.mov" ;
done;