1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
Description: Use python3 rather than python2
Even in the documentation
Author: IOhannes m zmölnig
Origin: Debian
Last-Update: 2020-01-17
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- faust.orig/architecture/webaudio/README.md
faust/architecture/webaudio/README.md
@@ -86,7 86,7 @@
Look at the [Noise](noise-wasm.html) and [OSC](osc-wasm.html) pages for the complete code.
-Note that pages loading an additional .wasm file cannot directly be loaded in Chrome. You'll have to start a local server (using the *python -m SimpleHTTPServer* command for instance) and access them with their *http://* based URL.
Note that pages loading an additional .wasm file cannot directly be loaded in Chrome. You'll have to start a local server (using the *python3 -m http.server* command for instance) and access them with their *http://* based URL.
### Generating Polyphonic WebAudio nodes
--- faust.orig/architecture/webaudio/webComponent/index.html
faust/architecture/webaudio/webComponent/index.html
@@ -22,7 22,7 @@
most of browser doesn't allow cross browsing domain.
</p>
<p>
- You can use the python SimpleHTTPServer on linux. (type "python -m SimpleHTTPServer 8000" in a console). The server have to be launched in parent directory of html file (to have the libfaust.js file).
You can use the python3 http.server on linux. (type "python3 -m http.server 8000" in a console). The server have to be launched in parent directory of html file (to have the libfaust.js file).
</p>
<p>
Your browser must support import files.
|