Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/trovster/images-to-gif
- Owner: trovster
- Created: 2022-05-10T17:20:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-10T17:31:40.000Z (over 2 years ago)
- Last Synced: 2024-12-06T21:05:28.121Z (about 1 month ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)