Converting mp4 to gif with ffmpeg
1
2
3
4
ffmpeg -i minecraft-ore-lamp_01.mp4 \
-vf "fps=10,scale=500:-1:flags=lanczos" \
-c:v pam -f image2pipe - | \
convert -delay 10 - -loop 0 -layers optimize output.gif
This post is licensed under
CC BY 4.0
by the author.