Created
November 5, 2014 14:32
-
-
Save postspectacular/453c72b62f47d870cce0 to your computer and use it in GitHub Desktop.
ffmpeg animated gif (optionally w/ watermark)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 12fps resize to 640x360 | |
ffmpeg -f image2 -r 12 -i frame-%04d.png -pix_fmt rgb24 -r 12 -s 640x360 anim.gif | |
# with watermark | |
ffmpeg -f image2 -r 12 -i frame-%04d.png -pix_fmt rgb24 -r 12 -s 640x360 -vf "movie=credits.png [watermark]; [in][watermark] overlay=10:10 [out]" anim.gif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the quality of the gif with watermark is low , Do you have any way to improve it ?