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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
<!DOCTYPE html>
<html>
<head>
<title>WebAudio Csound</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, shrink-to-fit=no" />
<meta property="og:title" content="Webaudio-csound:examples" />
<meta property="og:description" content="A set of WebAudio Csound demos
from instruments to effects to full compositions" />
<meta property="og:image" content="http://waaw.csound.com/og_image.png" />
<meta property="og:url" content="http://waaw.csound.com/index.html" />
<style type="text/css">
html,
body {
font-family: Monospace;
color: #bf94f7;
background-color: #000055;
font-size: 20px;
}
A {
color: #FFFFFF;
}
A:link {
text-decoration: none;
}
H1 {
font-size: 36px;
}
</style>
</head>
<body>
<h1 id="webaudio-csound-examples">WebAudio Csound Examples</h1>
<ul>
<li>
<p><a href="randgen.html">Random note generator</a>: This example demonstrates how to load the WASM Csound library and use the CsoundObj class to compile and perform simple synthesis code that is embedded in the HTML page.</p>
</li>
<li>
<p><a href="minimal.html">Minimal</a>: This example demonstrates the csound.js javascript frontend to create a simple interactive page.
</p>
</li>
<li>
<p><a href="sliders.html">Sliders</a>: This example demonstrates how to use channels to send control data into Csound from HTML 5 sliders.</p>
</li>
<li>
<p><a href="canvas.html">Canvas</a>: A two-dimension control surface accepting mouse or touch interactions.</p>
</li>
<li>
<p><a href="reverb.html">Reverb</a>: A reverb effect using external audio input (e.g. microphone).</p>
</li>
<li>
<p><a href="tabex.html">Step Sequencer</a>: A step sequencer demonstrating the use of Csound tables.</p>
</li>
<li>
<p><a href="midi.html">MIDI</a>: a virtual MIDI input example using HTML 5 buttons to send MIDI channel messages to Csound.</p>
</li>
<li>
<p><a href="midiplayer.html">MIDIPlayer</a>: a GM MIDI file Player using soundfonts.
</p>
</li>
<li>
<p><a href="csdplayer.html">CSDPlayer</a>: a realtime CSD player.</p>
</li>
<li>
<p><a href="stria.html">Stria</a>: a CSD performance of John Chowning's classic piece.</p>
</li>
</ul>
<p>
Reference documentation can be found <a href="docs/index.html">here</a>.
</p>
</body>
</html>
|