mp4merger
v1.0.1
Published
This module is used to merge two mp4 files together.
Downloads
2
Readme
live-1.0.1
${DESCRIPTION}
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);
});