GithubHelp home page GithubHelp logo

gifme's Introduction

gifme

Convert any video file or video readable stream to an animated GIF of desired length and size.

Features

  • Less depedencies
  • Fast
  • No temporary files generated
  • Supports readable stream as input
  • Returns promise, better for handling errors

Requirements

Before using gifme, please install:

Installation

For global

npm install -g gifme

For local

npm install gifme

Usage

let fs = require('fs');
let gifme = require('gifme');
let path = require('path');

let input = path.join(__dirname, 'video.mp4');
let output = path.join(__dirname, 'video.gif');

let gif = fs.createWriteStream(output);

var options = {
  width: 320,
  height: 240,
  from: '00:00:00.000',
  to: '00:00:10.000'
};

gifime(input, options)
  .then((gifStream) => {
    gifStream.pipe(output);
  })
  .catch(err, function doSomthingWithError(error){//do something});

You can also pass a readable stream to gifme(stream, options).

Options usage

options can have following keys

  • from - from speciifies the time from which gif should start. It must be in format of hh:mm:ss.xxx eg. 00:00:00.000.
  • to - It must be in format of hh:mm:ss.xxx eg. 00:00:10.000
  • width - width of generated gif must be a number
  • height - height of generated gif must be a number
  • fps - frame rate for generating gif must be number

Events emitted

Follownig events are eimmited from the generated gif stream.

Event done

done is emitted when gif is created successfull without any errors. Example:

gifime(input, options)
  .then((gifStream) => {
    gifStream.pipe(output);
    gifStream.on('done', () => {
      console.log('gif successfuly generated');
    });
  })
  .catch(err, function doSomthingWithError(error){//do something});

gifme's People

Contributors

uzil avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.