Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/trovster/images-to-gif

Convert a folder of images to a GIF.
https://github.com/trovster/images-to-gif

Last synced: 19 days ago
JSON representation

Convert a folder of images to a GIF.

Awesome Lists containing this project

README

        

# Folder to GIF

Convert a folder of images to a GIF.

## Running

Install Node and dependencies.

```sh
nvm use
npm install
```

Put a folder of images in the `src` folder, then run the script.

```sh
node convert \
--source=avatars \
--filename=avatars.gif \
--quality=30 \
--duration=100 \
--height=1024 \
--width=1024
```

```sh
npm start -- --filename=test.gif
```

## Dependencies

* [make-a-gif](https://github.com/VyrekXD/MAG)
* [minimist](https://github.com/substack/minimist)