# gify

> Convert videos to animated gifs

Latest version **0.2.0** (published 2013-08-31) · MIT license · 0 weekly downloads

## Install

```sh
npm install gify
pnpm add gify
yarn add gify
bun add gify
```

Provides the command `gify`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.0 |
| Published | 2013-08-31 |
| First published | 2013-08-29 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 5 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 300 |
| Maintainers | tjholowaychuk |
| Keywords | gif, video, ffmpeg, gifsicle |

## Links

- npm: https://www.npmjs.com/package/gify
- Repository: https://github.com/visionmedia/node-gify
- Issues: https://github.com/visionmedia/node-gify/issues
- npm.io page: https://npm.io/package/gify

## Dependencies (5)

- [uid2](https://npm.io/package/uid2.md) 0.0.3
- [debug](https://npm.io/package/debug.md) *
- [mkdirp](https://npm.io/package/mkdirp.md) ~0.3.5
- [commander](https://npm.io/package/commander.md) ~2.0.0
- [shell-escape](https://npm.io/package/shell-escape.md) 0.0.0

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 0.2.0 (latest) — 2013-08-31
- 0.1.0 — 2013-08-29
- 0.0.1 — 2013-08-29

## README

# gify

  Turn videos into gifs.

  ![](http://i.cloudup.com/0lDQXlLZNS.gif)

## Installation

```
$ npm install gify
```

Requires `ffmpeg` and `graphicsmagick`:

```
brew install ffmpeg graphicsmagick
```

## Example

  Without options:

```js
gify('out.mp4', 'out.gif', function(err){
  if (err) throw err;
});
```

  With options:

```js
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

---
_Source: https://npm.io/package/gify · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
