Skip to content
This repository has been archived by the owner on Nov 11, 2017. It is now read-only.

Latest commit

 

History

History
35 lines (27 loc) · 688 Bytes

NODE.md

File metadata and controls

35 lines (27 loc) · 688 Bytes

Usage in Node.js

Node.js version can be used for conversion of standalone .ts files to .mp4.

Using as executable

npm i -g mpegts_to_mp4
mpegts_to_mp4 src.ts dest.mp4

Using as module

npm i --save mpegts_to_mp4
var mpegts_to_mp4 = require('mpegts_to_mp4');

mpegts_to_mp4('src.ts', 'dest.mp4', function (err) {
	// ... handle success/error ...
});
// or
var promise = mpegts_to_mp4('src.ts', 'dest.mp4');
promise.then(
	function () { /* handle success */ },
	function (err) { /* handle error */ }
);

Both source and destination can be either string paths or Readable/Writable streams.