Skip to content

Instantly share code, notes, and snippets.

@erindatkinson
Created August 26, 2021 17:29
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 erindatkinson/b9049844ab9a66c89361b55170fa9254 to your computer and use it in GitHub Desktop.
Save erindatkinson/b9049844ab9a66c89361b55170fa9254 to your computer and use it in GitHub Desktop.

Make a gif of a screen recording

Install for ffmpeg

brew install ffmpeg

Command for transcribing

ffmpeg \
 -i input.mov \
 -vf "fps=10,scale=640:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" \
 -loop 0 \
 output.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment