@grame/faustwasm 0.9.3 → 0.9.4
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/assets/standalone/index-pwa.js +2 -2
- package/dist/cjs-bundle/index.js +3 -3
- package/dist/cjs-bundle/index.js.map +1 -1
- package/dist/esm-bundle/index.js +3 -3
- package/dist/esm-bundle/index.js.map +1 -1
- package/libfaust-wasm/libfaust-wasm.data +0 -0
- package/libfaust-wasm/libfaust-wasm.js +1 -1
- package/libfaust-wasm/libfaust-wasm.wasm +0 -0
- package/package.json +1 -1
- package/test/organ1/create-node.js +177 -0
- package/test/organ1/dsp-meta.json +126 -0
- package/test/organ1/dsp-module.wasm +0 -0
- package/test/organ1/faust-ui/index.css +442 -0
- package/test/organ1/faust-ui/index.css.map +1 -0
- package/test/organ1/faust-ui/index.d.ts +1 -0
- package/test/organ1/faust-ui/index.js +3729 -0
- package/test/organ1/faust-ui/index.js.map +1 -0
- package/test/organ1/faustwasm/index.d.ts +1696 -0
- package/test/organ1/faustwasm/index.js +4888 -0
- package/test/organ1/faustwasm/index.js.map +7 -0
- package/test/organ1/icon.png +0 -0
- package/test/organ1/index.html +76 -0
- package/test/organ1/index.js +183 -0
- package/test/organ1/manifest.json +17 -0
- package/test/organ1/service-worker.js +165 -0
|
@@ -39,8 +39,8 @@ let faustNode;
|
|
|
39
39
|
const { createFaustNode, createFaustUI } = await import("./create-node.js");
|
|
40
40
|
|
|
41
41
|
// To test the ScriptProcessorNode mode
|
|
42
|
-
// const result = await createFaustNode(audioContext, "
|
|
43
|
-
const result = await createFaustNode(audioContext, "
|
|
42
|
+
// const result = await createFaustNode(audioContext, "FAUST_DSP_NAME", FAUST_DSP_VOICES, true, 512);
|
|
43
|
+
const result = await createFaustNode(audioContext, "FAUST_DSP_NAME", FAUST_DSP_VOICES);
|
|
44
44
|
faustNode = result.faustNode; // Assign to the global variable
|
|
45
45
|
if (!faustNode) throw new Error("Faust DSP not compiled");
|
|
46
46
|
|