You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
381 B
17 lines
381 B
'use strict';
|
|
|
|
var muxjs = {
|
|
codecs: require('./codecs'),
|
|
mp4: require('./mp4'),
|
|
flv: require('./flv'),
|
|
mp2t: require('./m2ts')
|
|
};
|
|
|
|
// include all the tools when the full library is required
|
|
muxjs.mp4.tools = require('./tools/mp4-inspector');
|
|
muxjs.flv.tools = require('./tools/flv-inspector');
|
|
muxjs.mp2t.tools = require('./tools/ts-inspector');
|
|
|
|
|
|
module.exports = muxjs;
|