0.0.6 • Published 11 years ago

delay-buffer v0.0.6

Weekly downloads
-
License
-
Repository
-
Last release
11 years ago

A Delay is a basic component. It can be used for reverb, echo, flanging, etc. This delay does not provide feedback. Look out for the feedback module!

var Delay = require('delay');
  , d = 4000 // in samples not seconds
  , g = .75 // gain of the delay
  , bytes = 4 // 32 bit samples
  , delay = Delay(d, g, bytes);
  
function(t){
  var sample = funhkySample(t);
  return delay(sample) // also accepts option gain param
}
0.0.6

11 years ago

0.0.4

11 years ago

0.0.2

11 years ago