Skip to content

Instantly share code, notes, and snippets.

@welmends
Created December 8, 2023 13:12
Show Gist options
  • Save welmends/e249379c84ce728b13c9729ff7a92060 to your computer and use it in GitHub Desktop.
Save welmends/e249379c84ce728b13c9729ff7a92060 to your computer and use it in GitHub Desktop.
Convert .mov to .gif
#!/bin/bash
ffmpeg -ss 00:00:00.000 -i input.mov -pix_fmt rgb24 -r 10 -s 1920x1080 -t 00:00:10.000 output.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment