-
Notifications
You must be signed in to change notification settings - Fork 2
/
audio.js
76 lines (67 loc) · 1.35 KB
/
audio.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
const { Track } = require('./track')
/**
* The default stream index of 'audio' streams.
* @public
* @const
*/
const DEFAULT_STREAM_INDEX = 1
/**
* The stream type (codec_type) for an `AudioTrack` track.
* @public
* @const
*/
const STREAM_TYPE = 'audio'
/**
* The `AudioTrack` class represents an extended `Track`
* that targets an audio stream in the source the track
* points to.
* @public
* @class
* @extends Track
*/
class AudioTrack extends Track {
/**
* The default stream index for 'audio'.
* @static
* @accessor
* @type {Number}
*/
static get DEFAULT_STREAM_INDEX() {
return DEFAULT_STREAM_INDEX
}
/**
* The name of the stream type for this audio tracks.
* @static
* @accessor
* @type {String}
*/
static get STREAM_TYPE() {
return STREAM_TYPE
}
/**
* The number of channels in the track's source stream.
* @accessor
* @type {?(Number)}
*/
get channels() {
if (!this.properties.stream) { return null }
return this.properties.stream.channels
}
/**
* The channel layout of the track's source stream.
* @accessor
* @type {?(String)}
*/
get channelLayout() {
if (!this.properties.stream) { return null }
return this.properties.stream.channel_layout
}
}
/**
* Module exports.
*/
module.exports = {
DEFAULT_STREAM_INDEX,
STREAM_TYPE,
AudioTrack
}