-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
input leaks past filter, when synth is replaced only #43
Comments
@LFSaw do you have an idea where we have introduced this problem? I'll try and fix it, but maybe you have a hint. |
There is a problem around here: https://github.com/musikinformatik/Steno/blob/master/Classes/StenoSignal.sc#L108 |
minor revelation it is not an order of execution (caused by the force-reload of everything):
If I change the filter definition to something simple, the burst gets shorter
|
probably the silence is detected earlier and the synth freed earlier then … |
why is the freeselfwhensilent happening before the mix? Line 96 in 1288832
|
for the sake of ease of understanding, I'd appreciate tackling naming issues first. Specifically, I'd like to get a definition of what is associated with variables
is this correct for all? |
some corrections:
|
because after the mix of the previous bus signal ( |
btw. I've just moved the routing function from Steno to StenoSignal, for clarity. |
this improves on #43, not clear yet if it is a full fix.
This is now almost fixed … just adding/removing parentheses leaks a little: t = Steno.push(2);
t.filter(\f, { |in, e| BPF.ar(in, 600 * (e[\index] + 1), 0.01) * 8 });
t.quelle(\n, { WhiteNoise.ar(0.4) });
--n[f f f]
--nf |
The text was updated successfully, but these errors were encountered: