@grame/faustwasm 0.0.62 → 0.0.63

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
@@ -45,7 +45,7 @@ For example:
45
45
  rm -rf test/out # make sure you are under the faustwasm directory.
46
46
  node scripts/faust2wasm.js test/mono.dsp test/out
47
47
  ```
48
- will create a set of files: `mono.js`, `mono.wasm`, `mono.json`, `mono.html` and the `faustwasm` folder.
48
+ will create a set of files: `mono.js`, `mono.wasm`, `mono.json`, `mono.html` in the `out` folder.
49
49
 
50
50
  Polyphonic instrument with:
51
51
 
@@ -53,7 +53,7 @@ Polyphonic instrument with:
53
53
  rm -rf test/out # make sure you are under the faustwasm directory.
54
54
  node scripts/faust2wasm.js test/poly.dsp test/out -poly
55
55
  ```
56
- will create a set of files: `poly.js`, `poly.wasm`, `poly.json`, `poly.html` (and possibly `poly_effect.wasm`, `poly_effect.json`) and the `faustwasm` folder.
56
+ will create a set of files: `poly.js`, `poly.wasm`, `poly.json`, `poly.html` (and possibly `poly_effect.wasm`, `poly_effect.json`) in the `out` folder.
57
57
 
58
58
  You can create a standalone DSP on a web page using the same command line:
59
59
 
@@ -61,7 +61,7 @@ You can create a standalone DSP on a web page using the same command line:
61
61
  rm -rf test/out # make sure you are under the faustwasm directory.
62
62
  node scripts/faust2wasm.js test/rev.dsp test/out -standalone
63
63
  ```
64
- will create a set of files: `rev.js`, `rev.wasm`, `rev.json`, `rev.html`, and the `faustwasm`, `faust-ui` folders.
64
+ will create a set of files: `rev.js`, `rev.wasm`, `rev.json`, `rev.html`, and the `faustwasm`, `faust-ui` folders in the `out` folder .
65
65
 
66
66
  Or a standalone polyphonic DSP on a web page with:
67
67
 
@@ -69,7 +69,7 @@ Or a standalone polyphonic DSP on a web page with:
69
69
  rm -rf test/out # make sure you are under the faustwasm directory.
70
70
  node scripts/faust2wasm.js test/organ1.dsp test/out -standalone
71
71
  ```
72
- will create a set of files: `organ1.js`, `organ1.wasm`, `organ1.json`, `organ1_effect.wasm`, `organ1_effect.json`, `organ1.html`, and the `faustwasm`, `faust-ui` folders.
72
+ will create a set of files: `organ1.js`, `organ1.wasm`, `organ1.json`, `organ1_effect.wasm`, `organ1_effect.json`, `organ1.html`, and the `faustwasm`, `faust-ui` folders in the `out` folder.
73
73
 
74
74
  #### Generate SVG Diagrams of a Faust DSP
75
75
 
@@ -78,6 +78,7 @@ For example:
78
78
  rm -rf test/out # make sure you are under the faustwasm directory.
79
79
  node scripts/faust2svg.js test/mono.dsp test/out
80
80
  ```
81
+
81
82
  The main diagram should be in `test/out/process.svg`.
82
83
 
83
84
  #### Generate or process audio files