ffmpeg -i in.mov -vf "transpose=1" out.mov
Resize in.gif
to be 320 px wide and maintain aspect ratio.
ffmpeg -i in.gif -vf scale=320:-1 out.gif
Note: might need to convert gifs to another format first, and then convert them back again at the end.
ffmpeg -f concat -i files.txt -codec copy all.mov