Skip to content

Instantly share code, notes, and snippets.

@budius
Created November 15, 2019 11:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save budius/763b8d8ec0ce370e79490a9feda12c27 to your computer and use it in GitHub Desktop.
Save budius/763b8d8ec0ce370e79490a9feda12c27 to your computer and use it in GitHub Desktop.
Create GIF from video using FFMPEG (optimised for mobile screen recording)
#!/bin/sh
ffmpeg -i $1 -r 15 -vf "scale=720:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" $1.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment