1
0
mirror of https://github.com/captn3m0/Scripts.git synced 2024-07-06 05:09:34 +00:00
scripts/avi2gif

7 lines
176 B
Plaintext
Raw Normal View History

2017-12-30 17:25:25 +00:00
#!/bin/sh
mkdir -p /tmp/frames
rm -fr /tmp/frames/*
ffmpeg -i $1 -vf scale=320:-1:flags=lanczos,fps=10 /tmp/frames/ffout%03d.png
convert -loop 0 /tmp/frames/ffout*.png $1.gif