http://www.infinitestringquartet.com
Music by: Úlfur Eldjárn
Graphic designer Sigurður Oddsson
Programming by: Halldór Eldjárn.
http://www.infinitestringquartet.com
Music by: Úlfur Eldjárn
Graphic designer Sigurður Oddsson
Programming by: Halldór Eldjárn.
Continuously retrieve Tweets that refer to the current time of day.
By Monkier Design and Technology at studiomoniker.com
Me too.
Interactive Web Audio synthesizer with visualization
Start watching around 2:00 to see the actual app.
http://vimeo.com/video/95057507
Using JavaScript and the Web Audio API
By Joe Sullivan at Beatport Engineering
http://tech.beatport.com/2014/web-audio/beat-detection-using-web-audio/
Interactive navigable audio visualization using Web Audio and Canvas.
By Katspaugh
Web Audio API
There are many links to Web Audio project right here on this blog: https://reactivemusic.net/?tag=web-audio
Comprehensive guide from Mozilla Developer Network https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API
Assign an instance of the Web Audio class to the object: context
context = new AudioContext();
Make an oscillator node
osc = context.createOscillator();
Connect the oscillator to the audio output (speaker)
osc.connect(context.destination);
Turn on the oscillator at the current time and plays a tone.
osc.noteOn(0);
Turn of the oscillator
osc.noteOff(0);
For more basics, see: “Using the Web Audio API”, at the Mozilla Developer Network: https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API/Using_Web_Audio_API
Demonstrated in class. Download from here: https://github.com/tkzic/web-audio-projects
HTML versions of examples from Boris Smus’s book: https://reactivemusic.net/?p=6094
javascript motion detection http://www.soundstep.com/blog/experiments/jsdetection/ ( broken)
infinite jukebox by Paul Lamere http://labs.echonest.com/Uploader/index.html
WebGL city http://alteredqualia.com/three/examples/webgl_city.html
Ring Visualizer http://airtightinteractive.com/demos/js/reactive/
Wave-pd1 (iOS) http://alxgbsn.co.uk/wavepad/
Gibber by Charie Roberts: http://gibber.mat.ucsb.edu/ (for demos, select all code, press <ctrl>-Enter to start, press <ctrl>-. to stop) (updated but check github)
Write a composition to induce magical effects.
Here is an example from Aseem Suri http://www.aseemsuri.com/journal/piece-of-mind-second-run-at-the-csound-conference
The project was derived from computer technology, but the overall effect was that people would go into a mysterious room, for a minute, and when they emerged, they would be smiling and happy.
Due on December 15th (last class)