Difference between revisions of "Realtime audio synthesis"
From Organic Design wiki
m (New page: [http://chuck.cs.princeton.edu ChucK] ...) |
m (sendosc) |
||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
[http://chuck.cs.princeton.edu ChucK] provides real time audio systhesis. It uses a virtual machine to make sound from it's own programming language. It can accept [[w:Open Sound Control|Open Sound Control]] messages to affect sound in real time. | [http://chuck.cs.princeton.edu ChucK] provides real time audio systhesis. It uses a virtual machine to make sound from it's own programming language. It can accept [[w:Open Sound Control|Open Sound Control]] messages to affect sound in real time. | ||
+ | apt-get -y install chuck | ||
+ | curl -O http://chuck.cs.princeton.edu/doc/examples/stk/moogie.ck | ||
+ | chuck.oos moogie.ck | ||
+ | |||
+ | Sounds cool! | ||
+ | |||
+ | ==See also== | ||
+ | *http://t-a-w.blogspot.com/2007/05/using-ddr-dance-mat-as-musical.html | ||
+ | *[http://joerg.piringer.net/index.php?href=software/oscsurface.xml&mtitle=software&PHPSESSID=ed61b4b098b5169df541124fad9da40b OSC surface] | ||
+ | *[http://hans.fugal.net/src/rosc/ OSC in ruby] | ||
+ | *[http://archive.cnmat.berkeley.edu/OpenSoundControl/clients/sendOSC.html sendosc] unix command |
Latest revision as of 02:36, 30 September 2008
ChucK provides real time audio systhesis. It uses a virtual machine to make sound from it's own programming language. It can accept Open Sound Control messages to affect sound in real time.
apt-get -y install chuck curl -O http://chuck.cs.princeton.edu/doc/examples/stk/moogie.ck chuck.oos moogie.ck
Sounds cool!