Hi, I’ve made a very basic Nyquist code:
(setf *track1* (mult *track* 0))
(dotimes (i 100)
(setf *track1* (sum *track1*
(snd-tapv *track* 1 (mult (lowpass2 (noise) 0.1) 0.5) 10)
))
)
(mult *track1* 0.1)
It is randomly subtracting frequencies from the audio, giving it a kind of whooshing sound.
My problems are:
- The code uses many delay lines (100!).
- The effect heavily boosts the lower frequencies, which I don’t want to happen.
Is there anything I can change in my code (mainly to solve problem #2)?