1.1.2 • Published 5 years ago

video-mosaic-generator v1.1.2

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

Volume Mosaic Render

Example

const MosaicRender = require('./build/index').default;
const mr = new MosaicRender();
const v = [
  {
    layoutId: 1
    filePath: './testfiles/1-60secs.mp4',
  }, {
    layoutId: 2
    filePath: './testfiles/2-60secs.mp4',
  }];
const t = 'heathrow-t3';

mr.on('progress', function (data) {
  console.log(data);
});

mr.render({
  template: t,
  videos: v,
});