xsound 3.0.12 → 3.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -1
- package/build/types/AudioModule/index.d.ts +8 -2
- package/build/types/AudioModule/index.d.ts.map +1 -1
- package/build/types/MediaModule/index.d.ts +8 -2
- package/build/types/MediaModule/index.d.ts.map +1 -1
- package/build/types/MixerModule/index.d.ts +8 -2
- package/build/types/MixerModule/index.d.ts.map +1 -1
- package/build/types/NoiseModule/index.d.ts +8 -2
- package/build/types/NoiseModule/index.d.ts.map +1 -1
- package/build/types/OneshotModule/index.d.ts +8 -2
- package/build/types/OneshotModule/index.d.ts.map +1 -1
- package/build/types/OscillatorModule/index.d.ts +8 -2
- package/build/types/OscillatorModule/index.d.ts.map +1 -1
- package/build/types/ProcessorModule/index.d.ts +8 -2
- package/build/types/ProcessorModule/index.d.ts.map +1 -1
- package/build/types/SoundModule/Effectors/BitCrusher.d.ts +47 -0
- package/build/types/SoundModule/Effectors/BitCrusher.d.ts.map +1 -0
- package/build/types/SoundModule/Effectors/Fuzz.d.ts +51 -0
- package/build/types/SoundModule/Effectors/Fuzz.d.ts.map +1 -0
- package/build/types/SoundModule/Effectors/OverDrive.d.ts +49 -0
- package/build/types/SoundModule/Effectors/OverDrive.d.ts.map +1 -0
- package/build/types/SoundModule/Effectors/{Distortion.d.ts → Preamp.d.ts} +31 -24
- package/build/types/SoundModule/Effectors/Preamp.d.ts.map +1 -0
- package/build/types/SoundModule/index.d.ts +14 -5
- package/build/types/SoundModule/index.d.ts.map +1 -1
- package/build/types/StreamModule/index.d.ts +8 -2
- package/build/types/StreamModule/index.d.ts.map +1 -1
- package/build/types/main.d.ts +9 -3
- package/build/types/main.d.ts.map +1 -1
- package/build/xsound.js +1 -1
- package/build/xsound.js.LICENSE.txt +1 -1
- package/build/xsound.js.map +1 -1
- package/build/xsound.min.js +1 -1
- package/build/xsound.min.js.LICENSE.txt +1 -1
- package/build/xsound.min.js.map +1 -1
- package/package.json +16 -16
- package/build/types/SoundModule/Effectors/Distortion.d.ts.map +0 -1
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Effector } from './Effector';
|
|
2
|
+
export declare type FuzzParams = {
|
|
3
|
+
state?: boolean;
|
|
4
|
+
drive?: number;
|
|
5
|
+
level?: number;
|
|
6
|
+
};
|
|
7
|
+
/**
|
|
8
|
+
* Effector's subclass for Fuzz.
|
|
9
|
+
* @constructor
|
|
10
|
+
* @extends {Effector}
|
|
11
|
+
*/
|
|
12
|
+
export declare class Fuzz extends Effector {
|
|
13
|
+
private positiveShaper;
|
|
14
|
+
private negativeShaper;
|
|
15
|
+
private positiveInputGain;
|
|
16
|
+
private negativeInputGain;
|
|
17
|
+
private positiveOutputGain;
|
|
18
|
+
private negativeOutputGain;
|
|
19
|
+
private outFilter;
|
|
20
|
+
private driveInput;
|
|
21
|
+
private level;
|
|
22
|
+
private drive;
|
|
23
|
+
/**
|
|
24
|
+
* @param {AudioContext} context This argument is in order to use Web Audio API.
|
|
25
|
+
*/
|
|
26
|
+
constructor(context: AudioContext);
|
|
27
|
+
/** @override */
|
|
28
|
+
start(_startTime?: number): void;
|
|
29
|
+
/** @override */
|
|
30
|
+
stop(_stopTime?: number, _releaseTime?: number): void;
|
|
31
|
+
/** @override */
|
|
32
|
+
connect(): GainNode;
|
|
33
|
+
/**
|
|
34
|
+
* This method gets or sets parameters for fuzz effector.
|
|
35
|
+
* This method is overloaded for type interface and type check.
|
|
36
|
+
* @param {keyof FuzzParams|FuzzParams} params This argument is string if getter. Otherwise, setter.
|
|
37
|
+
* @return {FuzzParams[keyof FuzzParams]|Fuzz} Return value is parameter for fuzz effector if getter.
|
|
38
|
+
* Otherwise, return value is for method chain.
|
|
39
|
+
*/
|
|
40
|
+
param(params: 'state'): boolean;
|
|
41
|
+
param(params: 'drive'): number;
|
|
42
|
+
param(params: 'level'): number;
|
|
43
|
+
param(params: FuzzParams): Fuzz;
|
|
44
|
+
/** @override */
|
|
45
|
+
params(): Required<FuzzParams>;
|
|
46
|
+
/** @override */
|
|
47
|
+
activate(): Fuzz;
|
|
48
|
+
/** @override */
|
|
49
|
+
deactivate(): Fuzz;
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=Fuzz.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Fuzz.d.ts","sourceRoot":"","sources":["../../../../src/SoundModule/Effectors/Fuzz.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC,oBAAY,UAAU,GAAG;IACvB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAA;CACf,CAAC;AAEF;;;;GAIG;AACH,qBAAa,IAAK,SAAQ,QAAQ;IAChC,OAAO,CAAC,cAAc,CAAiB;IACvC,OAAO,CAAC,cAAc,CAAiB;IACvC,OAAO,CAAC,iBAAiB,CAAW;IACpC,OAAO,CAAC,iBAAiB,CAAW;IACpC,OAAO,CAAC,kBAAkB,CAAW;IACrC,OAAO,CAAC,kBAAkB,CAAW;IACrC,OAAO,CAAC,SAAS,CAAmB;IACpC,OAAO,CAAC,UAAU,CAAqB;IACvC,OAAO,CAAC,KAAK,CAAW;IAExB,OAAO,CAAC,KAAK,CAAK;IAElB;;OAEG;gBACS,OAAO,EAAE,YAAY;IAiDjC,gBAAgB;IACA,KAAK,CAAC,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI;IAUhD,gBAAgB;IACA,IAAI,CAAC,SAAS,CAAC,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI;IAmBrE,gBAAgB;IACA,OAAO,IAAI,QAAQ;IA4CnC;;;;;;OAMG;IACI,KAAK,CAAC,MAAM,EAAE,OAAO,GAAG,OAAO;IAC/B,KAAK,CAAC,MAAM,EAAE,OAAO,GAAG,MAAM;IAC9B,KAAK,CAAC,MAAM,EAAE,OAAO,GAAG,MAAM;IAC9B,KAAK,CAAC,MAAM,EAAE,UAAU,GAAG,IAAI;IA4CtC,gBAAgB;IACA,MAAM,IAAI,QAAQ,CAAC,UAAU,CAAC;IAQ9C,gBAAgB;IACA,QAAQ,IAAI,IAAI;IAKhC,gBAAgB;IACA,UAAU,IAAI,IAAI;CAInC"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Effector } from './Effector';
|
|
2
|
+
export declare type OverDriveParams = {
|
|
3
|
+
state?: boolean;
|
|
4
|
+
drive?: number;
|
|
5
|
+
level?: number;
|
|
6
|
+
};
|
|
7
|
+
/**
|
|
8
|
+
* Effector's subclass for OverDrive.
|
|
9
|
+
* @constructor
|
|
10
|
+
* @extends {Effector}
|
|
11
|
+
*/
|
|
12
|
+
export declare class OverDrive extends Effector {
|
|
13
|
+
private shaper;
|
|
14
|
+
private inputShaper;
|
|
15
|
+
private outputShaper;
|
|
16
|
+
private inputGain;
|
|
17
|
+
private outputGain;
|
|
18
|
+
private driveInput;
|
|
19
|
+
private level;
|
|
20
|
+
private drive;
|
|
21
|
+
/**
|
|
22
|
+
* @param {AudioContext} context This argument is in order to use Web Audio API.
|
|
23
|
+
*/
|
|
24
|
+
constructor(context: AudioContext);
|
|
25
|
+
/** @override */
|
|
26
|
+
start(_startTime?: number): void;
|
|
27
|
+
/** @override */
|
|
28
|
+
stop(_stopTime?: number, _releaseTime?: number): void;
|
|
29
|
+
/** @override */
|
|
30
|
+
connect(): GainNode;
|
|
31
|
+
/**
|
|
32
|
+
* This method gets or sets parameters for overdrive effector.
|
|
33
|
+
* This method is overloaded for type interface and type check.
|
|
34
|
+
* @param {keyof OverDriveParams|OverDriveParams} params This argument is string if getter. Otherwise, setter.
|
|
35
|
+
* @return {OverDriveParams[keyof OverDriveParams]|OverDrive} Return value is parameter for overdrive effector if getter.
|
|
36
|
+
* Otherwise, return value is for method chain.
|
|
37
|
+
*/
|
|
38
|
+
param(params: 'state'): boolean;
|
|
39
|
+
param(params: 'drive'): number;
|
|
40
|
+
param(params: 'level'): number;
|
|
41
|
+
param(params: OverDriveParams): OverDrive;
|
|
42
|
+
/** @override */
|
|
43
|
+
params(): Required<OverDriveParams>;
|
|
44
|
+
/** @override */
|
|
45
|
+
activate(): OverDrive;
|
|
46
|
+
/** @override */
|
|
47
|
+
deactivate(): OverDrive;
|
|
48
|
+
}
|
|
49
|
+
//# sourceMappingURL=OverDrive.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OverDrive.d.ts","sourceRoot":"","sources":["../../../../src/SoundModule/Effectors/OverDrive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC,oBAAY,eAAe,GAAG;IAC5B,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAA;CACf,CAAC;AAEF;;;;GAIG;AACH,qBAAa,SAAU,SAAQ,QAAQ;IACrC,OAAO,CAAC,MAAM,CAAiB;IAC/B,OAAO,CAAC,WAAW,CAAiB;IACpC,OAAO,CAAC,YAAY,CAAiB;IACrC,OAAO,CAAC,SAAS,CAAW;IAC5B,OAAO,CAAC,UAAU,CAAW;IAC7B,OAAO,CAAC,UAAU,CAAqB;IACvC,OAAO,CAAC,KAAK,CAAW;IAExB,OAAO,CAAC,KAAK,CAAK;IAElB;;OAEG;gBACS,OAAO,EAAE,YAAY;IAmDjC,gBAAgB;IACA,KAAK,CAAC,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI;IAUhD,gBAAgB;IACA,IAAI,CAAC,SAAS,CAAC,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI;IAmBrE,gBAAgB;IACA,OAAO,IAAI,QAAQ;IAsCnC;;;;;;OAMG;IACI,KAAK,CAAC,MAAM,EAAE,OAAO,GAAG,OAAO;IAC/B,KAAK,CAAC,MAAM,EAAE,OAAO,GAAG,MAAM;IAC9B,KAAK,CAAC,MAAM,EAAE,OAAO,GAAG,MAAM;IAC9B,KAAK,CAAC,MAAM,EAAE,eAAe,GAAG,SAAS;IA4ChD,gBAAgB;IACA,MAAM,IAAI,QAAQ,CAAC,eAAe,CAAC;IAQnD,gBAAgB;IACA,QAAQ,IAAI,SAAS;IAKrC,gBAAgB;IACA,UAAU,IAAI,SAAS;CAIxC"}
|
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
import { Effector } from './Effector';
|
|
2
|
-
export declare type
|
|
3
|
-
export declare type DistortionType = 'clean' | 'crunch' | 'overdrive' | 'distortion' | 'fuzz';
|
|
2
|
+
export declare type PreampCurve = Float32Array | null;
|
|
4
3
|
export declare type PreEqualizerParams = {
|
|
5
4
|
state?: boolean;
|
|
6
|
-
curve?:
|
|
5
|
+
curve?: PreampCurve;
|
|
7
6
|
gain?: number;
|
|
8
7
|
lead?: number;
|
|
9
8
|
};
|
|
10
9
|
export declare type PostEqualizerParams = {
|
|
11
10
|
state?: boolean;
|
|
12
|
-
curve?:
|
|
11
|
+
curve?: PreampCurve;
|
|
13
12
|
bass?: number;
|
|
14
13
|
middle?: number;
|
|
15
14
|
treble?: number;
|
|
@@ -18,9 +17,9 @@ export declare type PostEqualizerParams = {
|
|
|
18
17
|
export declare type CabinetParams = {
|
|
19
18
|
state?: boolean;
|
|
20
19
|
};
|
|
21
|
-
export declare type
|
|
20
|
+
export declare type PreampParams = {
|
|
22
21
|
state?: boolean;
|
|
23
|
-
|
|
22
|
+
level?: number;
|
|
24
23
|
samples?: number;
|
|
25
24
|
pre?: PreEqualizerParams;
|
|
26
25
|
post?: PostEqualizerParams;
|
|
@@ -32,7 +31,7 @@ export declare type DistortionParams = {
|
|
|
32
31
|
* @extends {Effector}
|
|
33
32
|
*/
|
|
34
33
|
export declare class PreEqualizer extends Effector {
|
|
35
|
-
private
|
|
34
|
+
private shaper;
|
|
36
35
|
private gain;
|
|
37
36
|
private leadGain;
|
|
38
37
|
private lowpass;
|
|
@@ -65,7 +64,7 @@ export declare class PreEqualizer extends Effector {
|
|
|
65
64
|
* @extends {Effector}
|
|
66
65
|
*/
|
|
67
66
|
export declare class PostEqualizer extends Effector {
|
|
68
|
-
private
|
|
67
|
+
private shaper;
|
|
69
68
|
private bass;
|
|
70
69
|
private middle;
|
|
71
70
|
private treble;
|
|
@@ -107,26 +106,34 @@ export declare class Cabinet extends Effector {
|
|
|
107
106
|
constructor(context: AudioContext);
|
|
108
107
|
/** @override */
|
|
109
108
|
connect(): GainNode;
|
|
109
|
+
/**
|
|
110
|
+
* This method gets or sets parameters for cabinet.
|
|
111
|
+
* This method is overloaded for type interface and type check.
|
|
112
|
+
* @param {keyof CabinetParams|CabinetParams} params This argument is string if getter. Otherwise, setter.
|
|
113
|
+
* @return {CabinetParams[keyof CabinetParams]} Return value is parameter for cabinet if getter.
|
|
114
|
+
*/
|
|
115
|
+
param(params: 'state'): boolean;
|
|
116
|
+
param(params: CabinetParams): void;
|
|
110
117
|
/** @override */
|
|
111
118
|
params(): Required<CabinetParams>;
|
|
112
119
|
}
|
|
113
120
|
/**
|
|
114
|
-
* Effector's subclass for
|
|
121
|
+
* Effector's subclass for Preamplifier.
|
|
115
122
|
* @constructor
|
|
116
123
|
* @extends {Effector}
|
|
117
124
|
*/
|
|
118
|
-
export declare class
|
|
125
|
+
export declare class Preamp extends Effector {
|
|
119
126
|
/**
|
|
120
|
-
* This class (static) method creates instance of `Float32Array` for
|
|
121
|
-
* @param {number}
|
|
122
|
-
* @param {number} numberOfSamples This argument is
|
|
127
|
+
* This class (static) method creates instance of `Float32Array` for `WaveShaperNode`.
|
|
128
|
+
* @param {number} level This argument is preamp effect level.
|
|
129
|
+
* @param {number} numberOfSamples This argument is curve size.
|
|
123
130
|
* @return {Float32Array|null} Return value is `WaveShaperNode`'s 'curve'.
|
|
124
131
|
*/
|
|
125
|
-
static createCurve(
|
|
132
|
+
static createCurve(level: number, numberOfSamples: number): Float32Array | null;
|
|
126
133
|
private preEQ;
|
|
127
134
|
private postEQ;
|
|
128
135
|
private cabinet;
|
|
129
|
-
private
|
|
136
|
+
private level;
|
|
130
137
|
private numberOfSamples;
|
|
131
138
|
/**
|
|
132
139
|
* @param {AudioContext} context This argument is in order to use Web Audio API.
|
|
@@ -135,24 +142,24 @@ export declare class Distortion extends Effector {
|
|
|
135
142
|
/** @override */
|
|
136
143
|
connect(): GainNode;
|
|
137
144
|
/**
|
|
138
|
-
* This method gets or sets parameters for
|
|
145
|
+
* This method gets or sets parameters for preamp effector.
|
|
139
146
|
* This method is overloaded for type interface and type check.
|
|
140
|
-
* @param {keyof
|
|
141
|
-
* @return {
|
|
147
|
+
* @param {keyof PreampParams|PreampParams} params This argument is string if getter. Otherwise, setter.
|
|
148
|
+
* @return {PreampParams[keyof PreampParams]|Preamp} Return value is parameter for preamp effector if getter.
|
|
142
149
|
* Otherwise, return value is for method chain.
|
|
143
150
|
*/
|
|
144
151
|
param(params: 'state'): boolean;
|
|
145
|
-
param(params: '
|
|
152
|
+
param(params: 'level'): number;
|
|
146
153
|
param(params: 'samples'): number;
|
|
147
154
|
param(params: 'pre'): PreEqualizerParams;
|
|
148
155
|
param(params: 'post'): PostEqualizerParams;
|
|
149
156
|
param(params: 'cabinet'): CabinetParams;
|
|
150
|
-
param(params:
|
|
157
|
+
param(params: PreampParams): Preamp;
|
|
151
158
|
/** @override */
|
|
152
|
-
params(): Required<
|
|
159
|
+
params(): Required<PreampParams>;
|
|
153
160
|
/** @override */
|
|
154
|
-
activate():
|
|
161
|
+
activate(): Preamp;
|
|
155
162
|
/** @override */
|
|
156
|
-
deactivate():
|
|
163
|
+
deactivate(): Preamp;
|
|
157
164
|
}
|
|
158
|
-
//# sourceMappingURL=
|
|
165
|
+
//# sourceMappingURL=Preamp.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Preamp.d.ts","sourceRoot":"","sources":["../../../../src/SoundModule/Effectors/Preamp.ts"],"names":[],"mappings":"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"}
|
|
@@ -5,33 +5,39 @@ import { Recorder } from './Recorder';
|
|
|
5
5
|
import { Session } from './Session';
|
|
6
6
|
import { Effector } from './Effectors/Effector';
|
|
7
7
|
import { Autopanner, AutopannerParams } from './Effectors/Autopanner';
|
|
8
|
+
import { BitCrusher, BitCrusherParams } from './Effectors/BitCrusher';
|
|
8
9
|
import { Chorus, ChorusParams } from './Effectors/Chorus';
|
|
9
10
|
import { Compressor, CompressorParams } from './Effectors/Compressor';
|
|
10
11
|
import { Delay, DelayParams } from './Effectors/Delay';
|
|
11
|
-
import { Distortion, DistortionParams } from './Effectors/Distortion';
|
|
12
12
|
import { EnvelopeGenerator, EnvelopeGeneratorParams } from './Effectors/EnvelopeGenerator';
|
|
13
13
|
import { Equalizer, EqualizerParams } from './Effectors/Equalizer';
|
|
14
14
|
import { Filter, FilterParams } from './Effectors/Filter';
|
|
15
15
|
import { Flanger, FlangerParams } from './Effectors/Flanger';
|
|
16
|
+
import { Fuzz, FuzzParams } from './Effectors/Fuzz';
|
|
16
17
|
import { Listener, ListenerParams } from './Effectors/Listener';
|
|
17
18
|
import { NoiseGate, NoiseGateParams } from '../SoundModule/Effectors/NoiseGate';
|
|
18
19
|
import { NoiseSuppressor, NoiseSuppressorParams } from '../SoundModule/Effectors/NoiseSuppressor';
|
|
20
|
+
import { OverDrive, OverDriveParams } from '../SoundModule/Effectors/OverDrive';
|
|
19
21
|
import { Panner, PannerParams } from './Effectors/Panner';
|
|
20
22
|
import { Phaser, PhaserParams } from './Effectors/Phaser';
|
|
21
23
|
import { PitchShifter, PitchShifterParams } from './Effectors/PitchShifter';
|
|
24
|
+
import { Preamp, PreampParams } from './Effectors/Preamp';
|
|
22
25
|
import { Reverb, ReverbParams } from './Effectors/Reverb';
|
|
23
26
|
import { Ringmodulator, RingmodulatorParams } from './Effectors/Ringmodulator';
|
|
24
27
|
import { Stereo, StereoParams } from './Effectors/Stereo';
|
|
25
28
|
import { Tremolo, TremoloParams } from './Effectors/Tremolo';
|
|
26
29
|
import { VocalCanceler, VocalCancelerParams } from './Effectors/VocalCanceler';
|
|
27
30
|
import { Wah, WahParams } from './Effectors/Wah';
|
|
28
|
-
export declare type Module = Analyser | Recorder | Session | Stereo | Compressor |
|
|
29
|
-
export declare type ModuleName = 'analyser' | 'recorder' | 'session' | 'autopanner' | 'chorus' | 'compressor' | 'delay' | '
|
|
31
|
+
export declare type Module = Analyser | Recorder | Session | Stereo | Compressor | BitCrusher | OverDrive | Fuzz | Preamp | Wah | PitchShifter | Equalizer | Filter | Autopanner | Tremolo | Ringmodulator | Phaser | Flanger | Chorus | Delay | Reverb | Panner | Listener | EnvelopeGenerator | NoiseGate | NoiseSuppressor | VocalCanceler;
|
|
32
|
+
export declare type ModuleName = 'analyser' | 'recorder' | 'session' | 'autopanner' | 'bitcrusher' | 'overdrive' | 'fuzz' | 'chorus' | 'compressor' | 'delay' | 'preamp' | 'equalizer' | 'filter' | 'flanger' | 'listener' | 'panner' | 'phaser' | 'pitchshifter' | 'reverb' | 'ringmodulator' | 'stereo' | 'tremolo' | 'wah' | 'envelopegenerator' | 'noisegate' | 'noisesuppressor' | 'vocalcanceler';
|
|
30
33
|
export declare type SoundModuleParams = {
|
|
31
34
|
mastervolume?: number;
|
|
32
35
|
stereo?: StereoParams;
|
|
33
36
|
compressor?: CompressorParams;
|
|
34
|
-
|
|
37
|
+
bitcrusher?: BitCrusherParams;
|
|
38
|
+
overdrive?: OverDriveParams;
|
|
39
|
+
fuzz?: FuzzParams;
|
|
40
|
+
preamp?: PreampParams;
|
|
35
41
|
wah?: WahParams;
|
|
36
42
|
pitchshifter?: PitchShifterParams;
|
|
37
43
|
equalizer?: EqualizerParams;
|
|
@@ -69,7 +75,10 @@ export declare abstract class SoundModule implements Connectable {
|
|
|
69
75
|
protected session: Session;
|
|
70
76
|
protected stereo: Stereo;
|
|
71
77
|
protected compressor: Compressor;
|
|
72
|
-
protected
|
|
78
|
+
protected bitcrusher: BitCrusher;
|
|
79
|
+
protected overdrive: OverDrive;
|
|
80
|
+
protected fuzz: Fuzz;
|
|
81
|
+
protected preamp: Preamp;
|
|
73
82
|
protected wah: Wah;
|
|
74
83
|
protected pitchshifter: PitchShifter;
|
|
75
84
|
protected equalizer: Equalizer;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/SoundModule/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AACtE,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/SoundModule/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,20 +4,23 @@ import { Analyser } from '../SoundModule/Analyser';
|
|
|
4
4
|
import { Recorder } from '../SoundModule/Recorder';
|
|
5
5
|
import { Session } from '../SoundModule/Session';
|
|
6
6
|
import { Autopanner } from '../SoundModule/Effectors/Autopanner';
|
|
7
|
+
import { BitCrusher } from '../SoundModule/Effectors/BitCrusher';
|
|
7
8
|
import { Chorus } from '../SoundModule/Effectors/Chorus';
|
|
8
9
|
import { Compressor } from '../SoundModule/Effectors/Compressor';
|
|
9
10
|
import { Delay } from '../SoundModule/Effectors/Delay';
|
|
10
|
-
import { Distortion } from '../SoundModule/Effectors/Distortion';
|
|
11
11
|
import { EnvelopeGenerator } from '../SoundModule/Effectors/EnvelopeGenerator';
|
|
12
12
|
import { Equalizer } from '../SoundModule/Effectors/Equalizer';
|
|
13
13
|
import { Filter } from '../SoundModule/Effectors/Filter';
|
|
14
14
|
import { Flanger } from '../SoundModule/Effectors/Flanger';
|
|
15
|
+
import { Fuzz } from '../SoundModule/Effectors/Fuzz';
|
|
15
16
|
import { Listener } from '../SoundModule/Effectors/Listener';
|
|
16
17
|
import { NoiseGate } from '../SoundModule/Effectors/NoiseGate';
|
|
17
18
|
import { NoiseSuppressor } from '../SoundModule/Effectors/NoiseSuppressor';
|
|
19
|
+
import { OverDrive } from '../SoundModule/Effectors/OverDrive';
|
|
18
20
|
import { Panner } from '../SoundModule/Effectors/Panner';
|
|
19
21
|
import { Phaser } from '../SoundModule/Effectors/Phaser';
|
|
20
22
|
import { PitchShifter } from '../SoundModule/Effectors/PitchShifter';
|
|
23
|
+
import { Preamp } from '../SoundModule/Effectors/Preamp';
|
|
21
24
|
import { Reverb } from '../SoundModule/Effectors/Reverb';
|
|
22
25
|
import { Ringmodulator } from '../SoundModule/Effectors/Ringmodulator';
|
|
23
26
|
import { Stereo } from '../SoundModule/Effectors/Stereo';
|
|
@@ -133,20 +136,23 @@ export declare class StreamModule extends SoundModule {
|
|
|
133
136
|
module(moduleName: 'recorder'): Recorder;
|
|
134
137
|
module(moduleName: 'session'): Session;
|
|
135
138
|
module(moduleName: 'autopanner'): Autopanner;
|
|
139
|
+
module(moduleName: 'bitcrusher'): BitCrusher;
|
|
136
140
|
module(moduleName: 'chorus'): Chorus;
|
|
137
141
|
module(moduleName: 'compressor'): Compressor;
|
|
138
142
|
module(moduleName: 'delay'): Delay;
|
|
139
|
-
module(moduleName: 'distortion'): Distortion;
|
|
140
143
|
module(moduleName: 'envelopegenerator'): EnvelopeGenerator;
|
|
141
144
|
module(moduleName: 'equalizer'): Equalizer;
|
|
142
145
|
module(moduleName: 'filter'): Filter;
|
|
143
146
|
module(moduleName: 'flanger'): Flanger;
|
|
147
|
+
module(moduleName: 'fuzz'): Fuzz;
|
|
144
148
|
module(moduleName: 'listener'): Listener;
|
|
145
149
|
module(moduleName: 'noisegate'): NoiseGate;
|
|
146
150
|
module(moduleName: 'noisesuppressor'): NoiseSuppressor;
|
|
151
|
+
module(moduleName: 'overdrive'): OverDrive;
|
|
147
152
|
module(moduleName: 'panner'): Panner;
|
|
148
153
|
module(moduleName: 'phaser'): Phaser;
|
|
149
154
|
module(moduleName: 'pitchshifter'): PitchShifter;
|
|
155
|
+
module(moduleName: 'preamp'): Preamp;
|
|
150
156
|
module(moduleName: 'reverb'): Reverb;
|
|
151
157
|
module(moduleName: 'ringmodulator'): Ringmodulator;
|
|
152
158
|
module(moduleName: 'stereo'): Stereo;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/StreamModule/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,OAAO,EAAE,WAAW,EAAE,iBAAiB,EAAsB,MAAM,gBAAgB,CAAC;AACpF,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AACnD,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AACnD,OAAO,EAAE,OAAO,EAAE,MAAM,wBAAwB,CAAC;AACjD,OAAO,EAAE,UAAU,EAAE,MAAM,qCAAqC,CAAC;AACjE,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/StreamModule/index.ts"],"names":[],"mappings":"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"}
|
package/build/types/main.d.ts
CHANGED
|
@@ -15,20 +15,23 @@ import { Recorder, RecorderParams, RecordType, QuantizationBit, WaveExportType,
|
|
|
15
15
|
import { Session, SessionSetupParams, SessionConnectionParams, NumberOfSessionChannels, Room, RoomMap } from './SoundModule/Session';
|
|
16
16
|
import { Effector } from './SoundModule/Effectors/Effector';
|
|
17
17
|
import { Autopanner, AutopannerParams } from './SoundModule/Effectors/Autopanner';
|
|
18
|
+
import { BitCrusher, BitCrusherParams } from './SoundModule/Effectors/BitCrusher';
|
|
18
19
|
import { Chorus, ChorusParams } from './SoundModule/Effectors/Chorus';
|
|
19
20
|
import { Compressor, CompressorParams } from './SoundModule/Effectors/Compressor';
|
|
20
21
|
import { Delay, DelayParams } from './SoundModule/Effectors/Delay';
|
|
21
|
-
import { Distortion, DistortionParams, DistortionType, DistortionCurve, PreEqualizer, PreEqualizerParams, PostEqualizer, PostEqualizerParams, Cabinet, CabinetParams } from './SoundModule/Effectors/Distortion';
|
|
22
22
|
import { EnvelopeGenerator, EnvelopeGeneratorParams } from './SoundModule/Effectors/EnvelopeGenerator';
|
|
23
23
|
import { Equalizer, EqualizerParams } from './SoundModule/Effectors/Equalizer';
|
|
24
24
|
import { Filter, FilterParams } from './SoundModule/Effectors/Filter';
|
|
25
25
|
import { Flanger, FlangerParams } from './SoundModule/Effectors/Flanger';
|
|
26
|
+
import { Fuzz, FuzzParams } from './SoundModule/Effectors/Fuzz';
|
|
26
27
|
import { Listener, ListenerParams } from './SoundModule/Effectors/Listener';
|
|
27
28
|
import { NoiseGate, NoiseGateParams } from './SoundModule/Effectors/NoiseGate';
|
|
28
29
|
import { NoiseSuppressor, NoiseSuppressorParams } from './SoundModule/Effectors/NoiseSuppressor';
|
|
30
|
+
import { OverDrive, OverDriveParams } from './SoundModule/Effectors/OverDrive';
|
|
29
31
|
import { Panner, PannerParams, Position3D } from './SoundModule/Effectors/Panner';
|
|
30
32
|
import { Phaser, PhaserParams, PhaserNumberOfStages } from './SoundModule/Effectors/Phaser';
|
|
31
33
|
import { PitchShifter, PitchShifterParams } from './SoundModule/Effectors/PitchShifter';
|
|
34
|
+
import { Preamp, PreampParams, PreampCurve, PreEqualizer, PreEqualizerParams, PostEqualizer, PostEqualizerParams, Cabinet, CabinetParams } from './SoundModule/Effectors/Preamp';
|
|
32
35
|
import { Reverb, ReverbParams, ReverbErrorText } from './SoundModule/Effectors/Reverb';
|
|
33
36
|
import { Ringmodulator, RingmodulatorParams } from './SoundModule/Effectors/Ringmodulator';
|
|
34
37
|
import { Stereo, StereoParams } from './SoundModule/Effectors/Stereo';
|
|
@@ -83,19 +86,22 @@ declare namespace XSound {
|
|
|
83
86
|
var Session: typeof import("./SoundModule/Session").Session;
|
|
84
87
|
var Effector: typeof import("./SoundModule/Effectors/Effector").Effector;
|
|
85
88
|
var Autopanner: typeof import("./SoundModule/Effectors/Autopanner").Autopanner;
|
|
89
|
+
var BitCrusher: typeof import("./SoundModule/Effectors/BitCrusher").BitCrusher;
|
|
86
90
|
var Chorus: typeof import("./SoundModule/Effectors/Chorus").Chorus;
|
|
87
91
|
var Compressor: typeof import("./SoundModule/Effectors/Compressor").Compressor;
|
|
88
92
|
var Delay: typeof import("./SoundModule/Effectors/Delay").Delay;
|
|
89
|
-
var Distortion: typeof import("./SoundModule/Effectors/Distortion").Distortion;
|
|
90
93
|
var Equalizer: typeof import("./SoundModule/Effectors/Equalizer").Equalizer;
|
|
91
94
|
var Filter: typeof import("./SoundModule/Effectors/Filter").Filter;
|
|
92
95
|
var Flanger: typeof import("./SoundModule/Effectors/Flanger").Flanger;
|
|
96
|
+
var Fuzz: typeof import("./SoundModule/Effectors/Fuzz").Fuzz;
|
|
93
97
|
var Listener: typeof import("./SoundModule/Effectors/Listener").Listener;
|
|
94
98
|
var NoiseGate: typeof import("./SoundModule/Effectors/NoiseGate").NoiseGate;
|
|
95
99
|
var NoiseSuppressor: typeof import("./SoundModule/Effectors/NoiseSuppressor").NoiseSuppressor;
|
|
100
|
+
var OverDrive: typeof import("./SoundModule/Effectors/OverDrive").OverDrive;
|
|
96
101
|
var Panner: typeof import("./SoundModule/Effectors/Panner").Panner;
|
|
97
102
|
var Phaser: typeof import("./SoundModule/Effectors/Phaser").Phaser;
|
|
98
103
|
var PitchShifter: typeof import("./SoundModule/Effectors/PitchShifter").PitchShifter;
|
|
104
|
+
var Preamp: typeof import("./SoundModule/Effectors/Preamp").Preamp;
|
|
99
105
|
var Reverb: typeof import("./SoundModule/Effectors/Reverb").Reverb;
|
|
100
106
|
var Ringmodulator: typeof import("./SoundModule/Effectors/Ringmodulator").Ringmodulator;
|
|
101
107
|
var Stereo: typeof import("./SoundModule/Effectors/Stereo").Stereo;
|
|
@@ -121,6 +127,6 @@ declare namespace XSound {
|
|
|
121
127
|
var get: () => AudioContext;
|
|
122
128
|
var getCurrentTime: () => number;
|
|
123
129
|
}
|
|
124
|
-
export type { SoundModule, SoundModuleParams, OscillatorModule, OscillatorModuleParams, Glide, GlideParams, GlideType, Oscillator, OscillatorParams, OscillatorCustomType, OneshotModule, OneshotModuleParams, OneshotSetting, OneshotSettings, OneshotErrorText, NoiseModule, NoiseModuleParams, NoiseType, AudioModule, AudioModuleParams, AudioBufferSprite, MediaModule, MediaModuleParams, StreamModule, StreamModuleParams, MediaStreamTrackAudioSourceNode, ProcessorModule, MixerModule, MIDI, MML, Part, Sequence, MMLSyntaxError, Tree, TokenType, TokenMap, Token, Analyser, AnalyserParams, Domain, DataType, FFTSize, Color, Visualizer, VisualizerParams, GraphicsApi, Gradient, Gradients, Shape, Font, GraphicsStyles, TimeOverview, TimeOverviewParams, MouseEventTypes, DragMode, DragCallbackFunction, CurrentTimeStyles, Time, TimeParams, FFT, FFTParams, Recorder, RecorderParams, RecordType, QuantizationBit, WaveExportType, Track, Channel, Session, SessionSetupParams, SessionConnectionParams, NumberOfSessionChannels, Room, RoomMap, Effector, Autopanner, AutopannerParams, Chorus, ChorusParams, Compressor, CompressorParams, Delay, DelayParams,
|
|
130
|
+
export type { SoundModule, SoundModuleParams, OscillatorModule, OscillatorModuleParams, Glide, GlideParams, GlideType, Oscillator, OscillatorParams, OscillatorCustomType, OneshotModule, OneshotModuleParams, OneshotSetting, OneshotSettings, OneshotErrorText, NoiseModule, NoiseModuleParams, NoiseType, AudioModule, AudioModuleParams, AudioBufferSprite, MediaModule, MediaModuleParams, StreamModule, StreamModuleParams, MediaStreamTrackAudioSourceNode, ProcessorModule, MixerModule, MIDI, MML, Part, Sequence, MMLSyntaxError, Tree, TokenType, TokenMap, Token, Analyser, AnalyserParams, Domain, DataType, FFTSize, Color, Visualizer, VisualizerParams, GraphicsApi, Gradient, Gradients, Shape, Font, GraphicsStyles, TimeOverview, TimeOverviewParams, MouseEventTypes, DragMode, DragCallbackFunction, CurrentTimeStyles, Time, TimeParams, FFT, FFTParams, Recorder, RecorderParams, RecordType, QuantizationBit, WaveExportType, Track, Channel, Session, SessionSetupParams, SessionConnectionParams, NumberOfSessionChannels, Room, RoomMap, Effector, Autopanner, AutopannerParams, BitCrusher, BitCrusherParams, Chorus, ChorusParams, Compressor, CompressorParams, Delay, DelayParams, EnvelopeGenerator, EnvelopeGeneratorParams, Equalizer, EqualizerParams, Filter, FilterParams, Flanger, FlangerParams, Fuzz, FuzzParams, Listener, ListenerParams, NoiseGate, NoiseGateParams, NoiseSuppressor, NoiseSuppressorParams, OverDrive, OverDriveParams, Panner, PannerParams, Position3D, Phaser, PhaserParams, PhaserNumberOfStages, PitchShifter, PitchShifterParams, Preamp, PreampParams, PreampCurve, PreEqualizer, PreEqualizerParams, PostEqualizer, PostEqualizerParams, Cabinet, CabinetParams, Reverb, ReverbParams, ReverbErrorText, Ringmodulator, RingmodulatorParams, Stereo, StereoParams, Tremolo, TremoloParams, VocalCanceler, VocalCancelerParams, Wah, WahParams, PitchChar, ConvertedTime, FileEvent, FileReaderType, FileReaderErrorText };
|
|
125
131
|
export { XSound, XSound as X };
|
|
126
132
|
//# sourceMappingURL=main.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../src/main.ts"],"names":[],"mappings":"AAEA,OAAO,SAAS,CAAC;AACjB,OAAO,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAC/D,OAAO,EACL,gBAAgB,EAChB,sBAAsB,EACtB,KAAK,EACL,WAAW,EACX,SAAS,EACT,UAAU,EACV,gBAAgB,EAChB,oBAAoB,EACrB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,aAAa,EAAE,mBAAmB,EAAE,cAAc,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AACxH,OAAO,EAAE,WAAW,EAAE,iBAAiB,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAC1E,OAAO,EAAE,WAAW,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAClF,OAAO,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAC/D,OAAO,EAAE,YAAY,EAAE,kBAAkB,EAAE,+BAA+B,EAAE,MAAM,gBAAgB,CAAC;AACnG,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,QAAQ,EAAE,cAAc,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,OAAO,CAAC;AAC9F,OAAO,EACL,QAAQ,EACR,cAAc,EACd,MAAM,EACN,QAAQ,EACR,OAAO,EACP,UAAU,EACV,gBAAgB,EAChB,KAAK,EACL,WAAW,EACX,QAAQ,EACR,SAAS,EACT,KAAK,EACL,IAAI,EACJ,cAAc,EACd,YAAY,EACZ,kBAAkB,EAClB,eAAe,EACf,QAAQ,EACR,oBAAoB,EACpB,iBAAiB,EACjB,IAAI,EACJ,UAAU,EACV,GAAG,EACH,SAAS,EACV,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,QAAQ,EAAE,cAAc,EAAE,UAAU,EAAE,eAAe,EAAE,cAAc,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,wBAAwB,CAAC;AAC/H,OAAO,EAAE,OAAO,EAAE,kBAAkB,EAAE,uBAAuB,EAAE,uBAAuB,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,uBAAuB,CAAC;AACrI,OAAO,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAC;AAC5D,OAAO,EAAE,UAAU,EAAE,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AAClF,OAAO,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AACtE,OAAO,EAAE,UAAU,EAAE,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AAClF,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AACnE,OAAO,
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../src/main.ts"],"names":[],"mappings":"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"}
|