I am trying to batch convert a folder of .mov's into .gif's.
Input .mov's are 1920x1080 resolution and I would like to convert to 720x480 (to save file size). I have the following code, but not sure how to add the -vf scale=720 into this code:
for i in *.mov; do ffmpeg -ss 1 -i "$i" "${i%.*}.gif"; done
The above code works, just running it through terminal. Any help on adding the scale or any other optimizations to reduce file size would be greatly appreciated.
Thanks