Skip to content

Instantly share code, notes, and snippets.

@postspectacular
Created November 5, 2014 14:32
Show Gist options
  • Save postspectacular/453c72b62f47d870cce0 to your computer and use it in GitHub Desktop.
Save postspectacular/453c72b62f47d870cce0 to your computer and use it in GitHub Desktop.
ffmpeg animated gif (optionally w/ watermark)
# 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
@LNeway
Copy link

LNeway commented Jun 22, 2017

the quality of the gif with watermark is low , Do you have any way to improve it ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment