Tagged Questions

SuperCollider is an environment and programming language originally released in 1996 by James McCartney for real-time audio synthesis and algorithmic composition. Since then it has been evolving into a system used and further developed by both scientists and artists working with sound. It is an ...

learn more… | top users | synonyms

4
votes
1answer
232 views

Using types to model arbitrary constraints for compile-time checking

Given the strong type system of Scala, I had an ambitious project which I'm about to abandon now because the effort to usefulness ratio seems to be too high. Basically I have some graph elements (GE) ...
1
vote
2answers
248 views

How to Use Overtone with Vimclojure?

I use SuperCollider with Overtone,and VimClojure. But,it don't work well...What is Problem? "lein repl" works. user -> (use 'overtone.live) project.clj (defproject overtone-tutorial ...
1
vote
2answers
340 views

Realtime sound synthesis libraries---like ChucK or Supercollider, but implemented in, say, Python, for example?

I'm learning ChucK, which has an absolutely beautiful language specification but a really shitty implementation. Supercollider is out of the option due to lack of support/updates for Windows, and ...
1
vote
0answers
95 views

Record OSC for Non-Realtime-Synthesis

How do I: record OSC input to a control file during realtime synthesis Use that control file for non-realtime synthesis The reason to do it is to perform at low quality, and then render at high ...
0
votes
1answer
64 views

in SuperCollider what is the best way to render a sound a file?

What is the best way to programatically render a SuperCollider program to a file (say a wav file). Can I specify the duration of the file (eg 30 seconds)?
0
votes
2answers
30 views

How can I construct UGens with more than 5 arguments in JCollider

JCollider is a Java client for the SuperCollider sound synthesis server. It has a stupid arbitrary limit of 5 arguments when constructing UGens. (see Documentation for UGen here) I'm referring to the ...
0
votes
1answer
148 views

Debugging Supercollider OSCresponderNode

Anyone have an idea how to debug supercollider's OSCresponderNode? I'm trying to catch messages from another program with this : o = OSCresponderNode(nil, '/note', { arg t, r, msg; t.postln; ...