xsound 3.0.9 → 3.0.10
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 +22 -22
- package/build/types/main.d.ts +97 -89
- 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 +5 -5
package/README.md
CHANGED
|
@@ -43,10 +43,10 @@ or, in case of using as **module base** (For example, use chorus effector) ...
|
|
|
43
43
|
|
|
44
44
|
```JavaScript
|
|
45
45
|
// The instance of `AudioContext`
|
|
46
|
-
const context = get();
|
|
46
|
+
const context = X.get();
|
|
47
47
|
|
|
48
48
|
// Create the instance of `Chorus` that is defined by XSound
|
|
49
|
-
const chorus = new Chorus(context);
|
|
49
|
+
const chorus = new X.Chorus(context);
|
|
50
50
|
|
|
51
51
|
const oscillator = context.createOscillator();
|
|
52
52
|
|
|
@@ -75,28 +75,28 @@ XSound enable to using the following classes (Refer to [API Documentation](https
|
|
|
75
75
|
type BufferSize = 0 | 256 | 512 | 1024 | 2048 | 4096 | 8192 | 16384;
|
|
76
76
|
type RecordType = 1 | 2; // Monaural | Stereo
|
|
77
77
|
|
|
78
|
-
Analyser(context: AudioContext);
|
|
79
|
-
Recorder(context: AudioContext, bufferSize: BufferSize, numberOfInputs: RecordType, numberOfOutputs: RecordType);
|
|
80
|
-
Session(context: AudioContext);
|
|
78
|
+
X.Analyser(context: AudioContext);
|
|
79
|
+
X.Recorder(context: AudioContext, bufferSize: BufferSize, numberOfInputs: RecordType, numberOfOutputs: RecordType);
|
|
80
|
+
X.Session(context: AudioContext);
|
|
81
81
|
|
|
82
82
|
// Effectors
|
|
83
|
-
Autopanner(context: AudioContext);
|
|
84
|
-
Chorus(context: AudioContext);
|
|
85
|
-
Compressor(context: AudioContext);
|
|
86
|
-
Delay(context: AudioContext);
|
|
87
|
-
Distortion(context: AudioContext);
|
|
88
|
-
Equalizer(context: AudioContext);
|
|
89
|
-
Filter(context: AudioContext);
|
|
90
|
-
Flanger(context: AudioContext);
|
|
91
|
-
Listener(context: AudioContext);
|
|
92
|
-
Panner(context: AudioContext);
|
|
93
|
-
Phaser(context: AudioContext);
|
|
94
|
-
PitchShifter(context: AudioContext, size: BufferSize);
|
|
95
|
-
Reverb(context: AudioContext);
|
|
96
|
-
Ringmodulator(context: AudioContext);
|
|
97
|
-
Stereo(context: AudioContext, size, size: BufferSize);
|
|
98
|
-
Tremolo(context: AudioContext);
|
|
99
|
-
Wah(context: AudioContext);
|
|
83
|
+
X.Autopanner(context: AudioContext);
|
|
84
|
+
X.Chorus(context: AudioContext);
|
|
85
|
+
X.Compressor(context: AudioContext);
|
|
86
|
+
X.Delay(context: AudioContext);
|
|
87
|
+
X.Distortion(context: AudioContext);
|
|
88
|
+
X.Equalizer(context: AudioContext);
|
|
89
|
+
X.Filter(context: AudioContext);
|
|
90
|
+
X.Flanger(context: AudioContext);
|
|
91
|
+
X.Listener(context: AudioContext);
|
|
92
|
+
X.Panner(context: AudioContext);
|
|
93
|
+
X.Phaser(context: AudioContext);
|
|
94
|
+
X.PitchShifter(context: AudioContext, size: BufferSize);
|
|
95
|
+
X.Reverb(context: AudioContext);
|
|
96
|
+
X.Ringmodulator(context: AudioContext);
|
|
97
|
+
X.Stereo(context: AudioContext, size, size: BufferSize);
|
|
98
|
+
X.Tremolo(context: AudioContext);
|
|
99
|
+
X.Wah(context: AudioContext);
|
|
100
100
|
```
|
|
101
101
|
|
|
102
102
|
## Demo
|
package/build/types/main.d.ts
CHANGED
|
@@ -1,49 +1,39 @@
|
|
|
1
1
|
import './types';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
2
|
+
import { SoundModule, SoundModuleParams } from './SoundModule';
|
|
3
|
+
import { OscillatorModule, OscillatorModuleParams, Glide, GlideParams, GlideType, Oscillator, OscillatorParams, OscillatorCustomType } from './OscillatorModule';
|
|
4
|
+
import { OneshotModule, OneshotModuleParams, OneshotSetting, OneshotSettings, OneshotErrorText } from './OneshotModule';
|
|
5
|
+
import { NoiseModule, NoiseModuleParams, NoiseType } from './NoiseModule';
|
|
6
|
+
import { AudioModule, AudioModuleParams, AudioBufferSprite } from './AudioModule';
|
|
7
|
+
import { MediaModule, MediaModuleParams } from './MediaModule';
|
|
8
|
+
import { StreamModule, StreamModuleParams, NoiseGate, NoiseGateParams, NoiseSuppressor, NoiseSuppressorParams, MediaStreamTrackAudioSourceNode } from './StreamModule';
|
|
8
9
|
import { ProcessorModule } from './ProcessorModule';
|
|
9
10
|
import { MixerModule } from './MixerModule';
|
|
10
11
|
import { MIDI } from './MIDI';
|
|
11
|
-
import { MML } from './MML';
|
|
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
|
-
export * from './SoundModule/Effectors/Listener';
|
|
37
|
-
export * from './SoundModule/Effectors/Panner';
|
|
38
|
-
export * from './SoundModule/Effectors/Phaser';
|
|
39
|
-
export * from './SoundModule/Effectors/PitchShifter';
|
|
40
|
-
export * from './SoundModule/Effectors/Reverb';
|
|
41
|
-
export * from './SoundModule/Effectors/Ringmodulator';
|
|
42
|
-
export * from './SoundModule/Effectors/Stereo';
|
|
43
|
-
export * from './SoundModule/Effectors/Tremolo';
|
|
44
|
-
export * from './SoundModule/Effectors/VocalCanceler';
|
|
45
|
-
export * from './SoundModule/Effectors/Wah';
|
|
46
|
-
export * from './XSound';
|
|
12
|
+
import { MML, Part, Sequence, MMLSyntaxError, Tree, TokenType, TokenMap, Token } from './MML';
|
|
13
|
+
import { Analyser, AnalyserParams, Domain, DataType, FFTSize, Visualizer, VisualizerParams, Color, GraphicsApi, Gradient, Gradients, Shape, Font, GraphicsStyles, TimeOverview, TimeOverviewParams, MouseEventTypes, DragMode, DragCallbackFunction, CurrentTimeStyles, Time, TimeParams, FFT, FFTParams } from './SoundModule/Analyser';
|
|
14
|
+
import { Recorder, RecorderParams, RecordType, QuantizationBit, WaveExportType, Track, Channel } from './SoundModule/Recorder';
|
|
15
|
+
import { Session, SessionSetupParams, SessionConnectionParams, NumberOfSessionChannels, Room, RoomMap } from './SoundModule/Session';
|
|
16
|
+
import { Effector } from './SoundModule/Effectors/Effector';
|
|
17
|
+
import { Autopanner, AutopannerParams } from './SoundModule/Effectors/Autopanner';
|
|
18
|
+
import { Chorus, ChorusParams } from './SoundModule/Effectors/Chorus';
|
|
19
|
+
import { Compressor, CompressorParams } from './SoundModule/Effectors/Compressor';
|
|
20
|
+
import { Delay, DelayParams } from './SoundModule/Effectors/Delay';
|
|
21
|
+
import { Distortion, DistortionParams, DistortionType, DistortionCurve, PreEqualizer, PreEqualizerParams, PostEqualizer, PostEqualizerParams, Cabinet, CabinetParams } from './SoundModule/Effectors/Distortion';
|
|
22
|
+
import { EnvelopeGenerator, EnvelopeGeneratorParams } from './SoundModule/Effectors/EnvelopeGenerator';
|
|
23
|
+
import { Equalizer, EqualizerParams } from './SoundModule/Effectors/Equalizer';
|
|
24
|
+
import { Filter, FilterParams } from './SoundModule/Effectors/Filter';
|
|
25
|
+
import { Flanger, FlangerParams } from './SoundModule/Effectors/Flanger';
|
|
26
|
+
import { Listener, ListenerParams } from './SoundModule/Effectors/Listener';
|
|
27
|
+
import { Panner, PannerParams, Position3D } from './SoundModule/Effectors/Panner';
|
|
28
|
+
import { Phaser, PhaserParams, PhaserNumberOfStages } from './SoundModule/Effectors/Phaser';
|
|
29
|
+
import { PitchShifter, PitchShifterParams } from './SoundModule/Effectors/PitchShifter';
|
|
30
|
+
import { Reverb, ReverbParams, ReverbErrorText } from './SoundModule/Effectors/Reverb';
|
|
31
|
+
import { Ringmodulator, RingmodulatorParams } from './SoundModule/Effectors/Ringmodulator';
|
|
32
|
+
import { Stereo, StereoParams } from './SoundModule/Effectors/Stereo';
|
|
33
|
+
import { Tremolo, TremoloParams } from './SoundModule/Effectors/Tremolo';
|
|
34
|
+
import { VocalCanceler, VocalCancelerParams } from './SoundModule/Effectors/VocalCanceler';
|
|
35
|
+
import { Wah, WahParams } from './SoundModule/Effectors/Wah';
|
|
36
|
+
import { PitchChar, ConvertedTime, FileEvent, FileReaderType, FileReaderErrorText } from './XSound';
|
|
47
37
|
export declare type Source = OscillatorModule | OneshotModule | NoiseModule | AudioModule | MediaModule | StreamModule | ProcessorModule | MixerModule | MIDI | MML;
|
|
48
38
|
export declare type SourceName = 'oscillator' | 'oneshot' | 'noise' | 'audio' | 'media' | 'stream' | 'processor' | 'mixer' | 'midi' | 'mml';
|
|
49
39
|
/**
|
|
@@ -62,52 +52,70 @@ declare function XSound(sourceName: 'processor'): ProcessorModule;
|
|
|
62
52
|
declare function XSound(sourceName: 'mixer'): MixerModule;
|
|
63
53
|
declare function XSound(sourceName: 'midi'): MIDI;
|
|
64
54
|
declare function XSound(sourceName: 'mml'): MML;
|
|
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
|
-
|
|
55
|
+
declare namespace XSound {
|
|
56
|
+
var SAMPLE_RATE: number;
|
|
57
|
+
var EQUAL_TEMPERAMENT: 12;
|
|
58
|
+
var FREQUENCY_RATIO: 1.0594630943592953;
|
|
59
|
+
var MIN_A: 27.5;
|
|
60
|
+
var QUARTER_NOT: 4;
|
|
61
|
+
var HALF_UP: "+";
|
|
62
|
+
var HALF_DOWN: "-";
|
|
63
|
+
var DOT: ".";
|
|
64
|
+
var isPitchChar: typeof import("./XSound").isPitchChar;
|
|
65
|
+
var computeIndex: typeof import("./XSound").computeIndex;
|
|
66
|
+
var computeFrequency: typeof import("./XSound").computeFrequency;
|
|
67
|
+
var fft: typeof import("./XSound").fft;
|
|
68
|
+
var ifft: typeof import("./XSound").ifft;
|
|
69
|
+
var ajax: typeof import("./XSound").ajax;
|
|
70
|
+
var convertTime: typeof import("./XSound").convertTime;
|
|
71
|
+
var decode: typeof import("./XSound").decode;
|
|
72
|
+
var requestFullscreen: typeof import("./XSound").requestFullscreen;
|
|
73
|
+
var exitFullscreen: typeof import("./XSound").exitFullscreen;
|
|
74
|
+
var read: typeof import("./XSound").read;
|
|
75
|
+
var drop: typeof import("./XSound").drop;
|
|
76
|
+
var file: typeof import("./XSound").file;
|
|
77
|
+
var toFrequencies: typeof import("./XSound").toFrequencies;
|
|
78
|
+
var toTextFile: typeof import("./XSound").toTextFile;
|
|
79
|
+
var Analyser: typeof import("./SoundModule/Analyser").Analyser;
|
|
80
|
+
var Recorder: typeof import("./SoundModule/Recorder").Recorder;
|
|
81
|
+
var Session: typeof import("./SoundModule/Session").Session;
|
|
82
|
+
var Effector: typeof import("./SoundModule/Effectors/Effector").Effector;
|
|
83
|
+
var Autopanner: typeof import("./SoundModule/Effectors/Autopanner").Autopanner;
|
|
84
|
+
var Chorus: typeof import("./SoundModule/Effectors/Chorus").Chorus;
|
|
85
|
+
var Compressor: typeof import("./SoundModule/Effectors/Compressor").Compressor;
|
|
86
|
+
var Delay: typeof import("./SoundModule/Effectors/Delay").Delay;
|
|
87
|
+
var Distortion: typeof import("./SoundModule/Effectors/Distortion").Distortion;
|
|
88
|
+
var Equalizer: typeof import("./SoundModule/Effectors/Equalizer").Equalizer;
|
|
89
|
+
var Filter: typeof import("./SoundModule/Effectors/Filter").Filter;
|
|
90
|
+
var Flanger: typeof import("./SoundModule/Effectors/Flanger").Flanger;
|
|
91
|
+
var Listener: typeof import("./SoundModule/Effectors/Listener").Listener;
|
|
92
|
+
var Panner: typeof import("./SoundModule/Effectors/Panner").Panner;
|
|
93
|
+
var Phaser: typeof import("./SoundModule/Effectors/Phaser").Phaser;
|
|
94
|
+
var PitchShifter: typeof import("./SoundModule/Effectors/PitchShifter").PitchShifter;
|
|
95
|
+
var Reverb: typeof import("./SoundModule/Effectors/Reverb").Reverb;
|
|
96
|
+
var Ringmodulator: typeof import("./SoundModule/Effectors/Ringmodulator").Ringmodulator;
|
|
97
|
+
var Stereo: typeof import("./SoundModule/Effectors/Stereo").Stereo;
|
|
98
|
+
var Tremolo: typeof import("./SoundModule/Effectors/Tremolo").Tremolo;
|
|
99
|
+
var Wah: typeof import("./SoundModule/Effectors/Wah").Wah;
|
|
100
|
+
var setup: () => Promise<void>;
|
|
101
|
+
var clone: () => {
|
|
102
|
+
(sourceName: "oscillator"): OscillatorModule;
|
|
103
|
+
(sourceName: "oneshot"): OneshotModule;
|
|
104
|
+
(sourceName: "noise"): NoiseModule;
|
|
105
|
+
(sourceName: "audio"): AudioModule;
|
|
106
|
+
(sourceName: "media"): MediaModule;
|
|
107
|
+
(sourceName: "stream"): StreamModule;
|
|
108
|
+
(sourceName: "processor"): ProcessorModule;
|
|
109
|
+
(sourceName: "mixer"): MixerModule;
|
|
110
|
+
(sourceName: "midi"): MIDI;
|
|
111
|
+
(sourceName: "mml"): MML;
|
|
112
|
+
free(unusedSources: Source[]): void;
|
|
113
|
+
};
|
|
114
|
+
var free: (unusedSources: Source[]) => void;
|
|
115
|
+
var noConflict: (deep: boolean) => typeof XSound;
|
|
116
|
+
var get: () => AudioContext;
|
|
117
|
+
var getCurrentTime: () => number;
|
|
118
|
+
}
|
|
119
|
+
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, NoiseGate, NoiseGateParams, NoiseSuppressor, NoiseSuppressorParams, 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, Distortion, DistortionParams, DistortionType, DistortionCurve, PreEqualizer, PreEqualizerParams, PostEqualizer, PostEqualizerParams, Cabinet, CabinetParams, EnvelopeGenerator, EnvelopeGeneratorParams, Equalizer, EqualizerParams, Filter, FilterParams, Flanger, FlangerParams, Listener, ListenerParams, Panner, PannerParams, Position3D, Phaser, PhaserParams, PhaserNumberOfStages, PitchShifter, PitchShifterParams, Reverb, ReverbParams, ReverbErrorText, Ringmodulator, RingmodulatorParams, Stereo, StereoParams, Tremolo, TremoloParams, VocalCanceler, VocalCancelerParams, Wah, WahParams, PitchChar, ConvertedTime, FileEvent, FileReaderType, FileReaderErrorText };
|
|
112
120
|
export { XSound, XSound as X };
|
|
113
121
|
//# 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,
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../src/main.ts"],"names":[],"mappings":"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"}
|