Stop oscilloscope input?
-
When play a sound through an analyser oscilloscope and then bypass the analyser, the waveform freezes. I'd like it to stop scrolling the next inputted audio, but have the previous audio continue scrolling off the screen. Can I do this?
-
@mmprod what if you used a split container with the oscilloscope on one side followed by a math.clear to kill the signal after - and then toggle another math.clear or other means of stopping the signal flow into the oscilloscope. That way you don't have to turn off the scope, and it should keep scrolling after the incoming signal stops
-
Interesting.
@NEST-acoustics said in Stop oscilloscope input?:
@mmprod what if you used a split container with the oscilloscope on one side followed by a math.clear to kill the signal after - and then toggle another math.clear or other means of stopping the signal flow into the oscilloscope.
How would this math.clear work?
-
@mmprod The problem with using a split, is that the oscilloscope will show the dry signal.
I'd do it this way:- Place the oscilloscope at the end of the processing chain
- wrap the processing in a separate soft bypass
So when you bypass only the processing, the oscilloscope still dances
-
@ustk I was thinking the split would just go after the processing! so the processed signal goes to both split sides and just gets cleared after the scope side
-
@mmprod math.clear just clears whatever signal is going into it, literally a hard stop/mute/end of the line. Very handy!
-
@ustk @NEST-acoustics Thanks! I’ll try both ways
-
@NEST-acoustics oh sorry I thought you were talking one branch processed and the other just for the oscilloscope