Skip to content

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.

  • A source creates signal, like osc, const, mic, or sampler.
  • An effect changes signal, like flt, amp, dly, or reverb.
  • out is the final sink.

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.

Once you understand signal flow, filters, envelopes, LFOs, and MIDI routing all become easier to read.