Scripnode 101
-
@ustk thank you so much!
-
@ustk said in Scripnode 101:
There's a x1000 factor issue
Any ideas on how to deal with values over 1000ms?
Say 10000ms? Setting the PMA to multiply by .0001? I can't seem to find a meaningful ratio between the tempo sync time and the delay node time.EDIT
The skew factor of my delay time knob was set to .3 :/ setting it to 0 resolves the issue :) -
@dustbro said in Scripnode 101:
setting it to 0 resolves the issue
actually causes a $h!t ton of issues... haahahah!
Getting a break point debugging. What should the skew factor be set to for a slider? Is there some kind of general rule to follow?if (range.skew == 0.0f) { // You have some weird ranges going on here... jassertfalse; range.skew = 1.0f; }
Found the issue. A couple knobs on my interface had a middle position that was not in their range. oops!
-
Is there a node available in scriptnode to invert phase?
-
@dustbro Not sure, but doesn't the all-pass filter node do that?
-
@dustbro use a
math.mul
node and set the value to -1 -
@dustbro As @Matt_SF said,
*-1
is the way to go -
Thanks!
Should nodes like Tempo sync and PMA need to be placed in a modulator chain? -
@dustbro no need, you can put them in the graph as is (or put them in a
container.offline
)@christoph-hart said in Scripnode 101:
What the modchain actually does is creating a monophonic and downsampled signal which will not be fed into the original audio signal and thus is suitable for modulation if you put a core.peak at the end of its nodes.
-
@Christoph-Hart is there an equivalent to Engine.getSampleRate() in SNEX? I'm getting an error saying it Engine can't be resolved. Come to think of it, Console.print() doesn't work as well. it's supposed to, right?
-
@dustbro No but you can use the
prepare
function to store it to a member variable:void prepare(PrepareSpecs ps) { sr = ps.sampleRate; } double sr = 0.0;
-
@christoph-hart Thank you!
-
Okay some beginner scriptnode questions for you all.
What's with the beaker glass?
What is the best way to access scriptnode parameters? Create a midi script above the scriptnodeFX like this? If I have logic for callbacks having to do with the scriptnodeFX is the midi script controller script where I should put it?
HiseSnippet 1431.3oc6X0saaTDEdW6LkF2RoEUgf6VEwENsgTanTPpTkebrqrZchUV2.2UMY2w1ixryrL6XmXgxi.OE7hvK.R7HviPeCfyL6tdWm5X4ZVJbA9BKOyYNm467+YbWoviDEIjV1q2aRHwx91H2Ib0vFCwTtU6CrruEhQvRNkOnt09SBwQQDeKa6xOWe.60Wyx74M6rOlg4djrsrrNQP8HujFPUY61c2WPYrVXeROZPtS+3ca6I3MDLwH.LkQ0rBwdmgGPNDqOVIjk8MZ5SUBoqBqHQV1qsuveh6Pw473yeBMhdJinWT2xEDT71sDLeMh06Z0XHk42MUoirrrQcyLAkiMA2G0g5Smtelo3tFBNYbj2dXWZV3UdF3UOO7pkCdyARkxAo0hgz8PtdRZnJiRrqoMWQj8wfYOOThOqk8uhZHfCvUaGfOizRBKlxP0mTq1VNvWa9z9i3dJpf6H3GJTji3U2rxOUY8JWVw4pj52etzzWiTvXD4bIq8zxEwXU9nfSIxsbFiYiHSOHn9yZSQWuMMuK2KVqycPAuMmpNJjvut.AqDSE7qW09.rBCNB6j8fyERjJpFB1GPFCQ0wtk0QGPhNSIBg35kzm8QHBebGgehlOO+VoetDpBnCQJvdHchOeLMtvm37LGSJ51CHJfvHFFrPU23pGaiMeZkJo9eru+K3hSqtQWrDxmfXf5arkSss.uetaJiHbGorB2RCQPnfCKlges7qP4LJmj2klchTmqWJ648uWEtaGQT6oTR5oiTjpuE0i3jTtgq8xbp10iOsHSvPCLicJTOo5bvmVfO5AU5KjNUoOq1ScneW7E2jOlv.O+Tibc8kc3nfo3Lp5lvwe3CMZDHtHAircnjBHYQhXJ+s8qR2Dt+Kq7fG8+YgyjEFm7oyPrKqL4S2IIexkQ8IRKputYUl2zxf5jFJ+wuD9a6rRIx5ylDMAJ9xcyW.1DacSrIo+XNkCflGoAA46nnailP.bFyTNPWqlGQUSx2l8psYVa4Zyr3tfKKbuGpKU4Mb93szbvqta1+v3Moo8GhZ1uOwSkA10Ps9gE1gtvgxchgxsPtPMQSMZCP9DyZmuGOl37bBmHMEBVvvT+9xNLU3ROL0QdJ356Iw7nPQzLB1kDP6AA7Q427UQv7Bje7XsWN+9MDX4bI8lcZAJ4b4wEqFIMgK6EHFwUyDdTdo8IuCC0s1+4Fp68WAgUetS6tu0qAtKD5FDxHo8wLX7ighk8wiXS6tMarbGAWDNTvod4czGSfddCFPj4w9bUHn6HzoNam6u6wD3IH4CZ+7ceIDrgkfchrh1h5KusXQ9qOEECWGcBny+J9sBo3c4kp3cwDacyXP9YnqYFojfrqNC3pFjsOMTvvxqsCU5qk1B8tLSDpfhzx8tiCIpyExyLlqjeCdz3pBtbZXHQ07BrNczZOFSbdWAaRpMPeMlM0SuPS7ufcJdIAhB3bBKs9Kxtjw6dnI+4FsvdfpLoKFZXAgI5A2ffFhbaub0ktBBxbFFeOn4SGHJJFNZgm1BJdpH.LAl4pzulurltI7MiOn24zUIpNBAi9a0gxOId7NDp110r5fuX555v5YHZF2iSLdxYtfohr24hkWj0WBQ9AndCkDRwJzafZoMdEsLoiKXbhflDWTz1SWxX3YBErPaRGLTUzFzCo7B2f1qn08ahZxJ.KZ16mhKoqWAESKouhaiZGchlpGlkJFnNy9BwYAXSYs+1+yJq9r9qd20iEiTT9fNXn0h9gdv6+cgzRuzZpQokSSVWKsZmKg6aV7mvmDh00qsSHVOk36k6H.6IEu1Ktsl1+cSyNfdyM+Cqqi5nW6L8gzwwGAvvwu1ySah+BXV64yyWtB77Uq.OOdE34qWAddxJvy2rB77sKjG86R1ajRDD2MG1naSS9iscSNFhdMQ5V+kZam2d
Also if possible we should rename this thread "Scriptnode 101" rather than Scripnode 101 so it comes up in a search.
-
No tips on how to best access script node parameter's from midi processors?
-
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.