Browse Source

Getting closer - just filtering white noise

tags/kitchen
Pete Shadbolt 3 years ago
parent
commit
0c369d52aa
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      audio.scd

+ 2
- 2
audio.scd View File

@@ -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);


Loading…
Cancel
Save