-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaudio-node-suite.d.ts
254 lines (240 loc) · 12.9 KB
/
audio-node-suite.d.ts
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
/*!
** Audio-Node-Suite -- Web Audio API AudioNode Suite
** Copyright (c) 2020-2024 Dr. Ralf S. Engelschall <[email protected]>
**
** Permission is hereby granted, free of charge, to any person obtaining
** a copy of this software and associated documentation files (the
** "Software"), to deal in the Software without restriction, including
** without limitation the rights to use, copy, modify, merge, publish,
** distribute, sublicense, and/or sell copies of the Software, and to
** permit persons to whom the Software is furnished to do so, subject to
** the following conditions:
**
** The above copyright notice and this permission notice shall be included
** in all copies or substantial portions of the Software.
**
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
** SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
declare module "audio-node-suite" {
/* Composite `AudioNode` subclass by wrapping the node chain from an
input node to an output node */
export class AudioNodeComposite extends AudioNode {
public input: AudioNode /* the underlying input node */
public output: AudioNode /* the underlying output node */
public constructor(
context: AudioContext /* context to associate */
)
chain(
input: AudioNode, /* input node to wrap */
output?: AudioNode /* output node to wrap */
): void
bypass(
bypass: boolean /* whether to bypass the effects of the node chain */
): void
static factory (
context: AudioContext, /* context to associate */
nodes: Array<AudioNode> /* (still unlinked) list of nodes to chain sequentially */
): AudioNodeComposite
}
/* `AudioNode` for convenient silence generation. */
export class AudioNodeSilence extends AudioNodeComposite {
public constructor(
context: AudioContext, /* context to associate */
params?: {
channels?: number /* number of audio channels (default: 1) */
}
)
}
/* `AudioNode` for convenient noise generation.
White noise is random amplitudes across the entire frequency range, and
pink noise is random amplitudes across the entire frequency range and
where the amplitudes of the higher frequences are less strong than the low frequences. */
export class AudioNodeNoise extends AudioNodeComposite {
public constructor(
context: AudioContext, /* context to associate */
params?: {
type?: string, /* type of noise ("white" or "pink") (default: "pink"), */
channels?: number /* number of audio channels (default: 1) */
}
)
}
/* `AudioNode` for convenient Mute control */
export class AudioNodeMute extends AudioNodeComposite {
public constructor(
context: AudioContext, /* context to associate */
params?: {
mute?: boolean /* whether to mute initially (default: false) */
}
)
mute(
mute: boolean, /* whether to mute or unmute */
ms?: number /* linear adjust time in milliseconds (default: 10) */
): void
}
/* `AudioNode` for convenient Gain control
which acts on decibels instead of ampliture gain. */
export class AudioNodeGain extends AudioNodeComposite {
public constructor(
context: AudioContext, /* context to associate */
params?: {
gain?: number /* decibel to change the gain (default: 0) */
}
)
adjustGainDecibel(
db: number, /* target decibel */
ms?: number /* linear adjust time in milliseconds (default: 10) */
): void
}
/* `AudioNode` for convenient Compressor effect. */
export class AudioNodeCompressor extends AudioNodeComposite {
public constructor(
context: AudioContext, /* context to associate */
params?: {
threshold?: number, /* threshold in decibel to compress above (default: -16.0), */
attack?: number, /* time in seconds to attack/clamp-up volume (default: 0.003) */
release?: number, /* time in seconds to release/clamp-down volume (default: 0.400) */
knee?: number, /* smoothing "knee" in decibels at threshold (default: 3.0) */
ratio?: number /* ratio for decibels to compress above threshold (default: 2) */
}
)
}
/* `AudioNode` for convenient Limiter effect.
(effectively, a maximum Compressor near the clipping zone) */
export class AudioNodeLimiter extends AudioNodeComposite {
public constructor(
context: AudioContext, /* context to associate */
params?: {
threshold?: number, /* threshold in decibel to compress above (default: -3.0), */
attack?: number, /* time in seconds to attack/clamp-up volume (default: 0.001) */
release?: number, /* time in seconds to release/clamp-down volume (default: 0.050) */
knee?: number, /* smoothing "knee" in decibels at threshold (default: 0.0) */
ratio?: number /* ratio for decibels to compress above threshold (default: 20) */
}
)
}
/* `AudioNode` for parametric multi-band equalizer. */
export class AudioNodeEqualizer extends AudioNodeComposite {
public constructor(
context: AudioContext, /* context to associate */
params?: {
bands?: Array<{
type?: string, /* type of Biquad filter (default: "peaking"), */
freq?: number, /* base frequency to act on (default: 64*2^i) */
q?: number, /* Q factor to apply (default: 1.0) */
gain?: number /* gain to apply (default: 1.0) */
}>
}
)
}
/* `AudioNode` for meter, measuring the amplitude. */
export class AudioNodeMeter extends AudioNodeComposite {
public constructor(
context: AudioContext, /* context to associate */
params?: {
fftSize?: number, /* FFT size (default: 512) */
minDecibels?: number, /* FFT minimum decibels (default: -94) */
maxDecibels?: number, /* FFT maximum decibels (default: 0) */
smoothingTimeConstant?: number, /* FFT smoothing time constant (default: 0.8) */
intervalTime?: number, /* interval time in milliseconds to act (default: 3) */
intervalCount?: number /* interval count for average calculations (default: 100) */
}
)
}
/* `AudioNode` for noise gate. */
export class AudioNodeGate extends AudioNodeComposite {
public constructor(
context: AudioContext, /* context to associate */
params?: {
threshold?: number, /* open above threshold (dbFS) (default: -45) */
hysteresis?: number, /* close below threshold+hysteresis (dbFS) (default: -3) */
reduction?: number, /* reduction of volume gain (dbFS) (default: -30) */
interval?: number, /* tracking interval (ms) (default: 2) */
attack?: number, /* time to attack/clamp-up volume (ms) (default: 4) */
hold?: number, /* time to hold volume after it dropped below threshold+hysteresis (ms) (default: 40) */
release?: number /* time to release/clamp-down volume (ms) (default: 200) */
}
)
}
/* `AudioNode` for amplitude visualization. */
export class AudioNodeAmplitude extends AudioNodeComposite {
public constructor(
context: AudioContext, /* context to associate */
params?: {
fftSize?: number, /* FFT size (default: 512) */
minDecibels?: number, /* FFT minimum decibels (default: -60) */
maxDecibels?: number, /* FFT maximum decibels (default: 0) */
smoothingTimeConstant?: number, /* FFT smoothing time constant (default: 0.8) */
intervalTime?: number, /* interval time in milliseconds to act (default: 1000 / 60) */
intervalCount?: number /* interval length for average calculations (default: 300 / (1000 / 60)) */
decibelBars?: number[], /* list of decibel layers to draw (default: [ -60, -45, -21, -6 ]) */
colorBars?: string[], /* list of color layers to draw (default: [ "#306090", "#00b000", "#e0d000", "#e03030" ]) */
colorBarsDeactive?: string[], /* list of color layers to draw (default: [ "#606060", "#808080", "#a0a0a0", "#c0c0c0" ]) */
colorRMS?: string, /* color of the RMS decibel (default: "#ffffff") */
colorBackground?: string, /* color of the background (default: "#000000") */
horizontal?: boolean /* whether to draw horizontall instead of vertically (default: false) */
}
)
draw (
canvas: HTMLCanvasElement
): void
undraw (
canvas: HTMLCanvasElement
): void
deactive (
deactive: boolean
): void
}
/* `AudioNode` for spectrum visualization ("spectrogram" style). */
export class AudioNodeSpectrum extends AudioNodeComposite {
public constructor(
context: AudioContext, /* context to associate */
params?: {
fftSize?: number, /* FFT size (default: 8192) */
minDecibels?: number, /* FFT minimum decibels (default: -144) */
maxDecibels?: number, /* FFT maximum decibels (default: 0) */
smoothingTimeConstant?: number, /* FFT smoothing time constant (default: 0.8) */
intervalTime?: number, /* interval time in milliseconds to act (default: 1000 / 60) */
layers?: number[], /* list of decibel layers to draw (default: [ -120, -90, -60, -50, -40, -30, -20, -10 ]) */
slices?: number[], /* list of frequency slices to draw (default: [ 40, 80, 160, 320, 640, 1280, 2560, 5120, 10240, 20480 ]) */
colorBackground?: string, /* color of the background (default: "#000000") */
colorBars?: string, /* color of the spectrum bars (default: "#00cc00") */
colorLayers?: string, /* color of the decibel layer lines (default: "#009900") */
colorSlices?: string, /* color of the frequency slice lines (default: "#009900") */
logarithmic?: boolean /* whether to use logarithmic scale for frequencies (default: true) */
}
)
draw (
canvas: HTMLCanvasElement
): void
undraw (
canvas: HTMLCanvasElement
): void
}
/* `AudioNode` for opinionated voice filtering. */
export class AudioNodeVoice extends AudioNodeComposite {
public constructor(
context: AudioContext, /* context to associate */
params?: {
equalizer?: boolean, /* whether to enable equalizer */
noisegate?: boolean, /* whether to enable noise gate (expander) */
compressor?: boolean, /* whether to enable compressor */
limiter?: boolean, /* whether to enable limiter (hard compressor) */
gain?: number /* additional decibel to change the gain after processing (default: 0) */
}
)
mute(
mute: boolean, /* whether to mute or unmute */
ms?: number /* linear adjust time in milliseconds (default: 10) */
): void
adjustGainDecibel(
db: number, /* target decibel */
ms?: number /* linear adjust time in milliseconds */
): void
}
}