Master fader -40 db
Octave
Draw?
New FX
-> Param :
| Label | Input | Output | Amount | Delete |
|---|
Programmable node:
Number of inputs:
Number of outputs:
// Your arguments here are "inputs", "outputs" and "parameters"
const output = outputs[0];
// For every channel
for(let ch = 0; ch < output.length; ch++) {
let channel = output[ch];
// Fill the audio buffer
for (let sample = 0; sample < channel.length; sample++) {
// With random data (white noise)
channel[sample] = Math.random() * 2 - 1;
}
}