Interweave frames of videos together into flicker films
Go to file
Matt McWilliams 6c12d4961c Update the docs by running the doc build process. 2021-03-26 18:46:45 -04:00
docs Update the docs by running the doc build process. 2021-03-26 18:46:45 -04:00
scripts Restore square_gif script with automatic resizing in the first script. Performs the crop and re-encode in 1920x1080 2019-05-31 16:35:09 -04:00
src Accidentally broke reference to package.json 2021-03-26 18:43:17 -04:00
.gitignore Ignore macOS-speicific files 2019-01-03 22:37:47 -05:00
LICENSE Add license, MIT. Is implied in the package.json, but was not explicitly included in the repo. 2018-12-21 21:35:32 -05:00
README.md Update readme to reflect all options on the application now. 2021-03-26 18:45:07 -04:00
build.js Target node10, node11 isn't supported 2019-08-05 12:21:29 -04:00
frameloom Accidentally broke reference to package.json 2021-03-26 18:43:17 -04:00
package-lock.json Update modules for porting process. 2021-03-26 17:00:17 -04:00
package.json Update modules for porting process. 2021-03-26 17:00:17 -04:00

README.md

frameloom

Node script to generate flicker videos by interweaving frames from multiple videos


Requirements

This script relies on ffmpeg to export and stitch video back together

Installation instructions for ffmpeg here: https://github.com/adaptlearning/adapt_authoring/wiki/Installing-FFmpeg

Installation

git clone https://github.com/sixteenmillimeter/frameloom.git
cd frameloom
npm install 
chmod +x frameloom

Basic Usage

./frameloom -i /path/to/video1:/path/to/video2 -o /path/to/output

Options

Run ./frameloom -h to display help screen.

Usage: frameloom [options]

Options:
  -V, --version            output the version number
  -i, --input [files]      Specify input videos with paths seperated by colon
  -o, --output [file]      Specify output path of video
  -p, --pattern [pattern]  Specify a pattern for the flicker 1:1 is standard
  -r, --realtime           Specify if videos should preserve realtime speed
  -t, --tmp [dir]          Specify tmp directory for exporting frames
  -a, --avconv             Specify avconv if preferred to ffmpeg
  -R, --random             Randomize frames. Ignores pattern if included
  -s, --spin               Randomly rotate frames before rendering
  -e, --exec               Command to execute on every frame. Specify {{i}} and {{o}} if the command requires
                           it, otherwise frame path will be appended to command
  -q, --quiet              Suppresses all log messages
  -h, --help               display help for command

TODO

  • Generate example videos automatically
  • Publish example videos