forked from little-core-labs/little-media-box
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsubtitle.js
56 lines (49 loc) · 951 Bytes
/
subtitle.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
53
54
55
56
const { Track } = require('./track')
/**
* The default stream index of 'subtitle' streams.
* @public
* @const
*/
const DEFAULT_STREAM_INDEX = 2
/**
* The stream type (codec_type) for an `SubtitleTrack` track.
* @public
* @const
*/
const STREAM_TYPE = 'subtitle'
/**
* The `SubtitleTrack` class represents an extended `Track`
* that targets a subtitle stream in the source the track
* points to.
* @public
* @class
* @extends Track
*/
class SubtitleTrack extends Track {
/**
* The default stream index for 'subtitle'.
* @static
* @accessor
* @type {Number}
*/
static get DEFAULT_STREAM_INDEX() {
return DEFAULT_STREAM_INDEX
}
/**
* The name of the stream type for this subtitle track.
* @static
* @accessor
* @type {String}
*/
static get STREAM_TYPE() {
return STREAM_TYPE
}
}
/**
* Module exports.
*/
module.exports = {
DEFAULT_STREAM_INDEX,
STREAM_TYPE,
SubtitleTrack
}