This commit is contained in:
Jorge Vásquez Pérez
2017-07-05 11:08:15 -07:00
2 changed files with 8 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
for i;
do ffmpeg -i "$i" -f mov -c:v prores_ks -profile:v 4444 -pix_fmt yuva444p10le -strict -2 -vendor ap10 "${i%.*}_pr4444.mov" ;
done;
+5
View File
@@ -0,0 +1,5 @@
#!/bin/bash
for i;
do ffmpeg -i "$i" -q 0 -c:V libx264 -profile:v main -pix_fmt yuv420p -s 1920x960 "${i%.*}_proxy.mkv";
done;