Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dangarfield/imageseries-to-video
CLI for quickly and automatically creating videos from image series within a folder. Multiple image series within a single folder are automatically detected
https://github.com/dangarfield/imageseries-to-video
Last synced: 11 days ago
JSON representation
CLI for quickly and automatically creating videos from image series within a folder. Multiple image series within a single folder are automatically detected
- Host: GitHub
- URL: https://github.com/dangarfield/imageseries-to-video
- Owner: dangarfield
- Created: 2021-08-18T10:12:15.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-18T10:56:07.000Z (over 3 years ago)
- Last Synced: 2024-04-25T02:25:25.323Z (7 months ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Image Series to Video CLI Tool
> CLI for quickly and automatically creating videos from image series within a folder. Multiple image series within a single folder are automatically detected. Concatenated videos are also available![alt text](https://i.ibb.co/tpqcP4s/i2v-demo.gif "Image Series to Video CLI Tool")
## Installation and usage
- Install [node js](https://nodejs.org/en/download/)
- Run `npm i -g imageseries-to-video` to install the tool
- Run `i2v` from cmd line in any folder of your choice to## Help
- Running `i2v -h` will provide you with a list of configuration options should you not wish to use the default```
HELP: Image Series To Video
HELP: Run the i2v command from any directory to convert image series into movies. Default settings:
HELP: Note: ffmpeg must be installed
HELP: -r 30 - Framerate to encode, default 30. Non 30 value (eg, 15) change the video output format to _15.mp4
HELP: -f '-[0]{2,3}.png' - First frame regex, eg matches any-file-00.png. Wrap with single quotes
HELP: -v .mp4 - Output file name, replaces first frame regex, eg any-file.mp4
HELP: -c libx264 - Video codec
HELP: -p yuv420p - Pixel format (ffmpeg -> pix_fmt)
HELP: -a 0 - Will also create a concatenated video of all videos with -a 2 repeats, any-file-all.mp4
```