Explorar el Código

Getting closer - just filtering white noise

tags/kitchen
Pete Shadbolt hace 3 años
padre
commit
0c369d52aa
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      audio.scd

+ 2
- 2
audio.scd Ver fichero

@@ -13,8 +13,8 @@ s.waitForBoot {
arg hue, saturation, value;
var oscillator, noise, filter;
oscillator = SinOsc.ar(MouseX.kr(220, 1000));
noise = WhiteNoise.ar(0.5);
filter = BPF.ar(noise, MouseX.kr(220, 1000), 0.3);
noise = WhiteNoise.ar(1);
filter = BPF.ar(noise, MouseX.kr(220, 1000), 0.0001);
Out.ar(0, filter);
});
module.load(s);


Cargando…
Cancelar
Guardar