Added a couple ffmpeg compression scripts, updated the mount whitehorse command and a couple of cli commands to open files with quicktime

This commit is contained in:
2016-09-29 16:36:16 -07:00
parent dee053f9f1
commit aca1cdd6ca
14 changed files with 77 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
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" ;
done;