Signal flow
Signal flow is the path a signal takes through your patch.
The simplest version is audio going from a source to the speakers.
Sources and effects
Section titled “Sources and effects”- A source creates signal, like
osc,const,mic, orsampler. - An effect changes signal, like
flt,amp,dly, orreverb. outis the final sink.
Audio and control
Section titled “Audio and control”In blzr, a handle can carry audio-rate signal or a slower control signal depending on what you connect.
That is why the same graph language can describe sound generation and modulation.
For example:
osc -> out
is audible signal flow, while
const -> osc.detune
is control flow changing another node.
Why this matters
Section titled “Why this matters”Once you understand signal flow, filters, envelopes, LFOs, and MIDI routing all become easier to read.
Next steps
Section titled “Next steps”- Build the base case in First sound.
- Add timbre control in First filter.
- Explore exact technical handles in the Node reference.