Stuff I Do.
- Convert a movie to a series of images; also, rotate images 90degres.
- ffmpeg -i ../IMG_6788.MOV -vf “transpose=1″ -r 15 -f image2 %05d.png
- transpose options:
0=90CounterCLockwise and Vertical Flip (default) 1=90Clockwise 2=90CounterClockwise 3=90Clockwise and Vertical Flip
- Convert a series of images into a movie
- ffmpeg -i ffmpeg_temp/%05d.png output.mpg
- Set the bit rate higher to get a higher quality output
- ~/ffmpeg -i ani%4d.jpg -b 5000k out.mp4