@grame/faust-web-component 0.3.7 → 0.3.9
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 +6 -2
- package/dist/faust-web-component.js +2439 -2210
- package/index.html +27 -59
- package/package.json +3 -3
package/README.md
CHANGED
@@ -76,9 +76,13 @@ effect = dm.freeverb_demo;
|
|
76
76
|
|
77
77
|
to get a polyphonic clarinet instrument with 16 voices and a global reverb effect.
|
78
78
|
|
79
|
+
### HTML example page
|
80
|
+
|
81
|
+
The HTML [index.html](./index.html) example page can be copied and tested in `dist` folder.
|
82
|
+
|
79
83
|
## NPM package
|
80
84
|
|
81
|
-
A [npm package](https://www.npmjs.com/package/@grame/faust-web-component) can be used with the CDN link: https://cdn.jsdelivr.net/npm/@grame/faust-web-component@0.3.
|
85
|
+
A [npm package](https://www.npmjs.com/package/@grame/faust-web-component) can be used with the CDN link: https://cdn.jsdelivr.net/npm/@grame/faust-web-component@0.3.9/dist/faust-web-component.js (possibly update the version number).
|
82
86
|
|
83
87
|
Here is an HTML example using this model:
|
84
88
|
|
@@ -97,7 +101,7 @@ process = vgroup("Oscillator", os.osc(freq1) * vol, os.osc(freq2) * vol);
|
|
97
101
|
-->
|
98
102
|
</faust-editor>
|
99
103
|
|
100
|
-
<script src="https://cdn.jsdelivr.net/npm/@grame/faust-web-component@0.3.
|
104
|
+
<script src="https://cdn.jsdelivr.net/npm/@grame/faust-web-component@0.3.9/dist/faust-web-component.js"></script>
|
101
105
|
```
|
102
106
|
|
103
107
|
## Demo
|