UNPKG

videoshowlas

Version:

Simple command-line and programmatic interface to create videos slideshows from images using ffmpeg

13 lines (9 loc) 282 B
var ffmpeg = require('fluent-ffmpeg') var Videoshow = require('./videoshow') var pkg = require('../package.json') module.exports = videoshow function videoshow(images, options) { return new Videoshow(images, options) } videoshow.VERSION = pkg.version videoshow.ffmpeg = ffmpeg