Socket
Socket
Sign inDemoInstall

gify

Package Overview
Dependencies
6
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gify

Convert videos to animated gifs


Version published
Weekly downloads
276
decreased by-42.98%
Maintainers
1
Install size
102 kB
Created
Weekly downloads
 

Readme

Source

gify

Turn videos into gifs.

Installation

$ npm install gify

Also 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

  • width max width [500]
  • height max height [none]
  • delay between frames [auto]
  • rate frame rate [10]
  • start start position in seconds or hh:mm:ss[.xxx] [0]
  • duration length of video to convert in seconds or hh:mm:ss[.xxx] [auto]

License

MIT

Keywords

FAQs

Last updated on 31 Aug 2013

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc