Sampler in ChucK
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
193B

  1. // Effects chain
  2. adc => LiSa s => dac;
  3. 1::second => s.duration;
  4. 0::second => s.recPos;
  5. 1::second => s.playPos;
  6. s.loop(1);
  7. s.loopRec(1);
  8. s.play(1);
  9. while (true){
  10. 1::second => now;
  11. }