forked from little-core-labs/little-media-box
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
52 lines (50 loc) · 1.1 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
const { ffmpeg, FFPROBE_BIN_PATH, FFMPEG_BIN_PATH } = require('./ffmpeg')
const { createDemuxStream, demux } = require('./demux')
const { configure } = require('./configure')
const { Delivery } = require('./delivery')
const extensions = require('./extensions')
const { Source } = require('./source')
const { Asset } = require('./asset')
const constants = require('./constants')
const settings = require('./settings')
const { mux } = require('./mux')
const iso639 = require('./iso-639')
const {
AudioTrack,
SubtitleTrack,
Track,
TrackError,
TrackPropertiesError,
TrackPropertiesMissingFormatError,
TrackPropertiesMissingStreamError,
TrackValidationError,
VideoTrack
} = require('./track')
/**
* Module exports.
*/
module.exports = {
Asset,
AudioTrack,
configure,
constants,
createDemuxStream,
Delivery,
demux,
extensions,
ffmpeg,
FFPROBE_BIN_PATH,
FFMPEG_BIN_PATH,
iso639,
mux,
settings,
Source,
SubtitleTrack,
Track,
TrackError,
TrackPropertiesError,
TrackPropertiesMissingFormatError,
TrackPropertiesMissingStreamError,
TrackValidationError,
VideoTrack,
}