Interweave frames of videos together into flicker films
Go to file
Matt 302c18df6a
Fix typo in readme title
2018-12-29 20:52:06 -05:00
.gitignore Ignore examples folder 2018-12-22 00:15: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 Fix typo in readme title 2018-12-29 20:52:06 -05:00
examples.sh Update all shell scripts to use /bin/sh and not /bin/bash to make syntax less confusing during development. 2018-12-28 18:07:15 -05:00
examples_assemble.sh Update all shell scripts to use /bin/sh and not /bin/bash to make syntax less confusing during development. 2018-12-28 18:07:15 -05:00
examples_youtube.sh Update all shell scripts to use /bin/sh and not /bin/bash to make syntax less confusing during development. 2018-12-28 18:07:15 -05:00
frameloom Script is now able to generate standard and random sequences from the example videos provided in the examples.sh script. The --realtime and --random flags are working. TODO: fix alt patterns like 2:2 or 3:1 2018-12-22 01:01:40 -05:00
frameloom.sh Update all shell scripts to use /bin/sh and not /bin/bash to make syntax less confusing during development. 2018-12-28 18:07:15 -05:00
package-lock.json Script is working for basic patterns 2018-12-07 19:10:34 -05:00
package.json Script is working for basic patterns 2018-12-07 19:10:34 -05: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
  -h, --help               output usage information