Skip to content

lisafolkerson/gifify

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 

Repository files navigation

gifify

gifify is a shell script for converting screen recordings into GIFs that can be embedded conveniently into places like Campfire chatrooms or GitHub issues and pull requests.

Installation

brew install gifify

Usage

Given a file recording.mov:

Convert it into recording.mov.gif, and upload it to CloudApp:

gifify recording.mov

Convert it into new_gif.gif, and upload it to CloudApp

gifify -o new_gif recording.mov

Convert it, cropping the top left corner, and upload:

gifify -c 100:100 recording.mov

Convert it, and do not upload it to CloudApp:

gifify -n recording.mov

Convert it, do not upload, and output at 60 frames per second:

gifify -r 60 -n recording.mov

Convert it, do not upload, and output at 30 frames per second at 2x speed:

gifify -r 30 -s 2 -n recording.mov

Convert it, do not upload, and output at 10 frames per second at 6x speed:

gifify -s 6 -n recording.mov

Convert it, upload it, then destroy the gif and the original file:

gifify -x recording.mov

http://f.cl.ly/items/1V0b3N4005372w261C0G/output.gif

Regarding framerates:

GIF renderers typically cap the framerate somewhere between 60 and 100 frames per second. If you choose to change the framerate or playback speed of your GIFs, ensure your framerates do not exceed 60 frames per second to ensure your GIFs play consistently. An easy way to compute this is to ensure that FPS (-r) x SPEED (-s) is not greater than 60.

License

MIT (See LICENSE)

About

gifify turns movies into gifs.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 100.0%