Skip to content

Instantly share code, notes, and snippets.

@the-spanish-guy
Created May 22, 2020 00:14
Show Gist options
  • Save the-spanish-guy/50e6dc0213615978fb3b0eeae0b6020d to your computer and use it in GitHub Desktop.
Save the-spanish-guy/50e6dc0213615978fb3b0eeae0b6020d to your computer and use it in GitHub Desktop.
video to gif
ffmpeg -i input.flv -vf scale=320:-1 -r 10 -f image2pipe -vcodec ppm - | convert -delay 5 -loop 0 - output.gif
//ou
ffmpeg -i gif.avi -r 60 -vf scale = 1024×720 -1 my-gif.gif
//mais eficiente
ffmpeg -y -i video.mp4 -vf palettegen palette.png
ffmpeg -y -i video.mp4 -i palette.png -filter_complex paletteuse -r 10 animation.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment