CoffeeCollider icon indicating copy to clipboard operation
CoffeeCollider copied to clipboard

Sound Processing Language for Web Audio

Results 13 CoffeeCollider issues
Sort by recently updated
recently updated
newest added

Hi, I realize that this project is no longer being maintained but I wanted to see if there was any possibility of converting it for use without coffeescript. Maybe it's...

Any advice on how to avoid clicks and pops when doing "pause" and "play" ? Like somehow using a "Line" or "Env" to shape the main audio node and then...

Hello mohayonao, Could you please add some documentation on how to use "tail" ? For instance using a SynthDef as filter of another SynthDef ? For instance, on this example...

- [x] [Klank](http://doc.sccode.org/Classes/Klank.html) - [x] [ReplaceOut](http://doc.sccode.org/Classes/ReplaceOut.html) - [ ] [XOut](http://doc.sccode.org/Classes/XOut.html) - [x] [LeakDC](http://doc.sccode.org/Classes/LeakDC.html)

enhancement

a = SinOsc.kr( 440 ) Message.send "a:value", a.get() # $a = SinOsc.ar( 55 ) ).play() console.log($a) Message.send "a:value", $a.get() #

雑談用です

``` coffeescript Line.kr(0, 1, 10, doneAction:2) # 2 is elusive ``` I want to write like this. ``` coffeescript Line.kr(0, 1, 10, doneAction:FREE) # (replaced 2 when compiling) ``` List...

from #2 BPMを省略した場合はマスターテンポに連携させたい ``` coffeescript Task.do -> Master.setBPM 120 s.play freq:440, dur:"L8" t = Task.do -> Master.setBPM 140 s.play freq:660, dur:"L4" @wait 100 Master.setBPM 180 s.play freq:660, dur:"L4" @wait 100...