Created
March 26, 2018 18:27
-
-
Save drbh/32ffe9e657f2d5cca2b54d2f644c3dad to your computer and use it in GitHub Desktop.
make screenshots into gifs easily with this function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| screen2gif() { | |
| ffmpeg -i $1 -s 1200x800 -pix_fmt rgb24 -r 20 -f gif - | gifsicle --optimize=3 --delay=3 > $1.gif | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment