First release
This commit is contained in:
commit
fa6c85266e
2339 changed files with 761050 additions and 0 deletions
20
node_modules/mux.js/cjs/index.js
generated
vendored
Normal file
20
node_modules/mux.js/cjs/index.js
generated
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var muxjs = {
|
||||
codecs: require('./codecs'),
|
||||
mp4: require('./mp4'),
|
||||
flv: require('./flv'),
|
||||
mp2t: require('./m2ts'),
|
||||
partial: require('./partial')
|
||||
}; // 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;
|
Loading…
Add table
Add a link
Reference in a new issue