Update docs to use correct name

This commit is contained in:
mmcw-dev 2018-12-22 00:16:01 -05:00
parent 6c75ee0408
commit 91a5298b72
1 changed files with 8 additions and 5 deletions

View File

@ -13,17 +13,19 @@ Installation instructions for ffmpeg here: https://github.com/adaptlearning/adap
## Installation ## Installation
``` ```
git clone https://github.com/sixteenmillimeter/videoloom.git git clone https://github.com/sixteenmillimeter/frameloom.git
cd videoloom cd frameloom
chmod +x videoloom
npm install npm install
chmod +x frameloom
``` ```
## Basic Usage ## Basic Usage
```./videoloom -i /path/to/video1:/path/to/video2 -o /path/to/output``` ```./frameloom -i /path/to/video1:/path/to/video2 -o /path/to/output```
## Features ## Options
Run `./frameloom -h` to display help screen.
``` ```
Usage: frameloom [options] Usage: frameloom [options]
@ -36,6 +38,7 @@ Options:
-r, --realtime Specify if videos should preserve realtime speed -r, --realtime Specify if videos should preserve realtime speed
-t, --tmp [dir] Specify tmp directory for exporting frames -t, --tmp [dir] Specify tmp directory for exporting frames
-a, --avconv Specify avconv if preferred to ffmpeg -a, --avconv Specify avconv if preferred to ffmpeg
-R, --random Randomize frames. Ignores pattern if included
-h, --help output usage information -h, --help output usage information
``` ```