We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the question Gif from a movie or images?
The text was updated successfully, but these errors were encountered:
Prerequisite
$ brew install ffmpeg
Answer
https://www.atrixnet.com/animated-gifs/
# This makes a 10 second gif $ mkdir gif $ ffmpeg -i YOUR_MOVIE.mpg -an -r 10 -y -s 640x480 gif/capture%03d.png # *see footnote $ cd gif $ for file in *png; do echo converting $file ...; convert $file `basename $file .png`.gif; done $ convert -delay 10 cap*gif -loop 0 anim.gif $ convert -layers Optimize anim.gif anim_optimized.gif $ mv anim_optimized.gif ../ $ cd ../ $ rm -rf ./gif
Sorry, something went wrong.
No branches or pull requests
Describe the question
Gif from a movie or images?
The text was updated successfully, but these errors were encountered: