1.0.1 • Published 7 years ago

mp4merger v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
7 years ago

live-1.0.1

${DESCRIPTION}

NPM Version Linux Build Test Coverage

Install

npm install --save mp4merger

Usage

  const Media = require('mp4merger');
  const media = new Media();

  var pathToVideos = "C:/videos/location";
  var pathToOutput = "C:/output/location/";
  var rgxStr = "/(.*)/";

  media.merge(pathToVideos, pathToOutput, rgxStr)
    .then(function(sol) {
      console.log(sol);
    })
    .catch(function(err) {
      console.error(err);
    });

License

MIT