spessasynth_lib 3.26.32 → 3.27.0
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
CHANGED
|
@@ -7,11 +7,19 @@
|
|
|
7
7
|
|
|
8
8
|
*This is a WebAudioAPI wrapper for the [spessasynth_core](https://github.com/spessasus/spessasynth_core) library.*
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
It allows you to:
|
|
11
|
+
- Play MIDI files using SF2/SF3/DLS files!
|
|
12
|
+
- Read and write MIDI files!
|
|
13
|
+
- Write SF2/SF3 files!
|
|
14
|
+
- Convert DLS to SF2! (and back!)
|
|
15
|
+
- [and more!](#current-features)
|
|
16
|
+
|
|
17
|
+
**SpessaSynth Project index**
|
|
11
18
|
|
|
12
19
|
- [spessasynth_core](https://github.com/spessasus/spessasynth_core) - SF2/DLS/MIDI library
|
|
13
|
-
- spessasynth_lib (you are here)
|
|
14
|
-
- [SpessaSynth](https://github.com/spessasus/SpessaSynth) - online/local
|
|
20
|
+
- [spessasynth_lib](https://github.com/spessasus/spessasynth_lib) (you are here) - spessasynth_core wrapper optimized for browsers and WebAudioAPI
|
|
21
|
+
- [SpessaSynth](https://github.com/spessasus/SpessaSynth) - online/local MIDI player/editor application
|
|
22
|
+
- [SpessaFont](https://github.com/spessasus/SpessaFont) - online SF2/DLS editor
|
|
15
23
|
|
|
16
24
|
|
|
17
25
|
> **TIP:**
|
|
@@ -23,7 +31,10 @@ npm install --save spessasynth_lib
|
|
|
23
31
|
|
|
24
32
|
### [Project site (consider giving it a star!)](https://github.com/spessasus/spessasynth_lib)
|
|
25
33
|
|
|
26
|
-
###
|
|
34
|
+
### Made with spessasynth_lib
|
|
35
|
+
- [SpessaSynth - Online SF2/DLS MIDI Player](https://spessasus.github.io/SpessaSynth)
|
|
36
|
+
- [SpessaFont - Online SoundFont/DLS Editor](https://spessasus.github.io/SpessaFont)
|
|
37
|
+
|
|
27
38
|
|
|
28
39
|
### [Complete documentation](https://github.com/spessasus/spessasynth_lib/wiki/)
|
|
29
40
|
|
package/package.json
CHANGED
|
@@ -596,7 +596,7 @@ class WorkletSpessaProcessor extends AudioWorkletProcessor
|
|
|
596
596
|
/**
|
|
597
597
|
* the audio worklet processing logic
|
|
598
598
|
* @param inputs {Float32Array[][]} required by WebAudioAPI
|
|
599
|
-
* @param outputs {Float32Array[][]} the outputs to write to, only the first two channels are populated
|
|
599
|
+
* @param outputs {Float32Array[][]} the outputs to write to, only the first two channels of each are populated
|
|
600
600
|
* @returns {boolean} true unless it's not alive
|
|
601
601
|
*/
|
|
602
602
|
process(inputs, outputs)
|