gify
v0.2.0
Published
Convert videos to animated gifs
Readme
gify
Turn videos into gifs.

Installation
$ npm install gifyAlso requires ffmpeg and graphicsmagic.
Example
Without options:
gify('out.mp4', 'out.gif', function(err){
if (err) throw err;
});With options:
var opts = {
width: 300
};
gify('out.mp4', 'out.gif', opts, function(err){
if (err) throw err;
});Options
widthmax width [500]heightmax height [none]delaybetween frames [auto]rateframe rate [10]startstart position in seconds or hh:mm:ss[.xxx] [0]durationlength of video to convert in seconds or hh:mm:ss[.xxx] [auto]
License
MIT
