Michae Gogins, Edward Costello, Steven Yi, Henri Manson
https://github.com/gogins
http://michaelgogins.tumblr.com
In order for Csound to use audio, the microphone, and MIDI, the user must grant these permissions for the site hosting Csound to the Web browser (usually by right-clicking on the lock symbol to the left of the URL, or on a permissions icon to the left of the URL).
THis directory builds and packages csound-wasm (Csound for WebAssembly), which includes my WebAssembly build of Csound and a WebAssembly build of my Csound Algorithmic Composition library.
This project has now been ported to Csound version 7. The Csound class in this build is compatible with the Csound API from Csound 6, and much is compatible with the API from Csound 7.
The canonical @csound/browser and @csound/web_audio projects also offer
a WebAssembly build of Csound. I am retaining and will continue to maintain
csound-wasm because my version of the Csound API is much closer to the
original C++ interface, supports printing Csound messages from JavaScript, can
be used after simply dropping a few files into a static Web site without
requiring rollups, and also remains backwardly compatible with earlier
compositions that used this library. As long as this project is easy to
maintain, I will continue to support it and use it.
This build uses the new WebAudio AudioWorklet for superior performance with fewer audio issues. Features include:
-
A new JavaScript interface to Csound that follows, as exactly as possible, the interface defined by the Csound class in
csound.hppand also implemented in CsoundOboe bycsound_oboe.hppfor the Csound for Android app, and bycsound.node. -
Additional Csound API methods exposed to JavaScript.
Please log any bug reports or requests for enhancements at https://github.com/gogins/csound-extended/issues.
See https://github.com/gogins/csound-wasm/commits/develop for the commit log.
Download the latest version of csound-wasm-{version.zip} from the
release page here. Unzip
it and it is ready to use.
There are some working examples in the release zip file. In the directory where you have unzipped the release, execute:
python3 -m http.server
Then navigate to http://localhost:8000 and view minimal.html. Click on
the Play button to validate your installation. Do the same with
trichord_space.html which uses CsoundAC in addition to Csound.
Some of the examples herein will run from https://gogins.github.io/csound-examples. For more information, see my csound-examples repository.
If you are simply going to use csound-wasm, download the binary release hosted here. If you are going to build csound-wasm, for example in order to debug or contribute to it, follow these instructions.
You will need to make sure that the boost header files and the Eigen library
for matrix algebra are available to the Emscripten toolchain. The easiest way
to do this is to install the libeigen3-dev and libboost-dev system
packages, and make them available to the Emscripten toolchain. Only header
files from these packages are used here.
The main build scripts are:
-
build-prequisites-wasm.sh, which installs or updates the Emscripten SDK. -
build-wasm.sh, which updates submodules, builds libsndfile, Csound for WASM, and CsoundAC for WASM, and creates a release package that also includes examples, Csound instrument definitions, miscellaneous JavaScript files, and so on.
-
Ported to Csound version 7.
-
It is now possible to optimize the WASM build for speed.
-
Many build scripts have been re-implemented in CMakeLists.txt.
-
Changed directory layout.
-
Added a
CsoundAudioNode.GetFileDatamethod to enable users to get data from ta file in the memory filesystem of the AudioWorkletGlobalScope, e.g. a soundfile record by Csound'sfoutopcode, into the browser's JavaScript context, where it can be downloaded. -
Enable source level debugging of C/C++ code compiled to WASM in DWARF format. Very useful!
-
Updated Csound.
-
Updated Csound to version 6.19.0.
-
Improved the WebAssembly builds of Csound and CsoundAC to support running either in NW.js with native Csound, or in Web browsers with Csound for WebAssembly. This makes it possible, e.g., to compose pieces using Strudel with native Csound, VST plugins, access to the local filesystem, and so on.