Scripnode 101
-
Okay more basic scriptnode questions, what is the difference between creating a embedded dsp network and creating a new DSP network file? (The 3d square vs. the page with a corner turned graphic on the scriptnode front page.)
-
@crd The embedded one is part of your project XML, the network one is a separate XML that can be compiled to C++ or shared with other projects.
-
@d-healey What would the advantage of ever using the embed one? Is that for smaller scripts?
-
@crd Useful for prototyping and for small scripts that you don't plan to use in other project and that don't need compiling.
-
Has anyone successfully exported a plugin with a script node network/dll?
I was able to export for a while without compiling a dll but now I am getting an error:
and the script node workbench crashes whenever I try to compile wrapped dsp nodes into a dll.
-
@crd I'm successfully exporting scriptnode plugins with compiled dll.
-
What's the best way to access L/R inputs to process them separately in SNEX?
Can we use arrays in SNEX?@Christoph-Hart is there an example showing how to use block?
block - a wrapper around a preallocated buffer of float numbers
When I try to initialize an index of a block with a number, I get an error saying statement cant be parsed.
-
@dustbro got it to work for the left channel only, it might be obvious why
data[1]
isn't working but I can't find...// Process the signal here template <typename ProcessDataType> void process(ProcessDataType& data) { for (auto& s: data[0]) s *= 0.5f; }
-
@dustbro oh I finally found a solution
// Process the signal here template <typename ProcessDataType> void process(ProcessDataType& data) { auto frame = data.toFrameData(); while(frame.next()) { frame[0] *= levelLeft; frame[1] *= levelRight; } }
-
@ustk Thanks! What about the function to process the input?
For instance, the SNEX shaper has:
float getSample(float input) { return input; }
Anything other than float input returns a parse error.
-
@Christoph-Hart is there a simple example that shows how to do this with an SNEX node?
-
@dustbro
getSample
is just a way to make an external function from theprocess
one, nothing prevents you to remove it and make your algorithm directly in theprocess
function, or make onegetLeftSample
and onegetRightSample
like below:float getLeftSample(float input) { return Math.tanh(input); } float getRightSample(float input) { return Math.tanh(input); } template <typename T> void process(T& data) { auto frame = data.toFrameData(); while(frame.next()) { frame[0] = getLeftSample(frame[0]); frame[1] = getRightSample(frame[1]); } }
The only thing is that this way of using
process
to separate the channels actually transforms it in a frame processing. So if you want block processing of separated channels, I don't know the trick. -
@ustk said in Scripnode 101:
if you want block processing of separated channels, I don't know the trick
Thanks again for this!
That's what I was doing, but got unexpected results. Now that I look a little closer, it appears that placing an SNEX node into a frame2_block returns a mono signal. -
@dustbro Strange indeed...
-
@ustk Looks like it's my code in processFrame. Lemme see if I can figure out the magic potion.
-
@dustbro That's what I'm doing, as you can see the output is stereo:
-
@ustk The framex_block gets it's stream from processFrame. If you leave that blank, the output will be unprocessed.
Here's the same example using an oscilloscope to see the results of placing the SNEX node into the frame block. I'm inverting one channel for easier viewing.
-
@dustbro Oh yes of course! My bad!!!
-
@dustbro Then you might not need a frame2_block, or?
-
@ustk Maybe, but without the frame2_block my DSP is glitchy and distorted.