forked from Storyboard-fm/little-media-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
video.js
93 lines (79 loc) · 1.76 KB
/
video.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
const { TrackValidationError } = require('./error')
const { Track } = require('./track')
const NOT_AVAILABLE = 'N/A'
/**
* The default stream index of 'video' streams.
* @public
* @const
*/
const DEFAULT_STREAM_INDEX = 0
/**
* The stream type (codec_type) for an `VideoTrack` track.
* @public
* @const
*/
const STREAM_TYPE = 'video'
/**
* The `VideoTrack` class represents an extended `Track`
* that targets a video stream in the source the track
* points to.
* @public
* @class
* @extends Track
*/
class VideoTrack extends Track {
/**
* The default stream index for 'video'.
* @static
* @accessor
* @type {Number}
*/
static get DEFAULT_STREAM_INDEX() {
return DEFAULT_STREAM_INDEX
}
/**
* The name of the stream type for this 'video' track.
* @static
* @accessor
* @type {String}
*/
static get STREAM_TYPE() {
return STREAM_TYPE
}
/**
* Internal validation for a video track.
* @param {Function}
*/
_validate(callback) {
const { stream } = this.properties
const messages = []
if (NOT_AVAILABLE === stream.r_frame_rate) {
messages.push('Stream frame rate not available.')
}
if (stream.nb_frames < 1) {
messages.push('Stream frames are missing.')
}
if (stream.bit_rate < 1) {
messages.push('Stream frame rate cannot be less than 1.')
}
if (messages.length) {
const header = (
`${messages.length} validation ` +
`${messages.length > 1 ? 'errors' : 'error'} ` +
`occurred`
)
const message = header + messages.join(' ')
callback(new TrackValidationError(message))
} else {
callback(null)
}
}
}
/**
* Module exports.
*/
module.exports = {
DEFAULT_STREAM_INDEX,
STREAM_TYPE,
VideoTrack
}