Solved Dsp Network Embedded Audio file not found
-
I stumbled upon this when re-compiling my networks on macOS :
the dspDelay network doesn't include any audio file (and never have). Compiling the same networks works on my PC, and it worked before on my mac but now that darn apple is complaining.
It does the same with my dspReverb network, which does involve afilters. convolution
node. Again, the file is here in my project folder but the message still shows up (even when I remove that node to get rid of the audio file, the message still pops up).Any ideas ? @Christoph-Hart :) ?
-
@Christoph-Hart Just FYI I found what cause the issue : the
container.offline
. My OCD is to blame : you know, each type of node has to be in the correct container... So I put control nodes into them to keeps things clean (event if I know they are ignored when processing audio). I removed them and the networks are compiling fine. -
-
Yes that offline container actually has a file slot so you can record stuff but I never implemented it correctly and know it just sits around and breaks compilation ;)
-
@Christoph-Hart haha I thought this container puts its nodes "off" the audio signal, but it was designed for offline processing!!
Now that explains the nature of the error. -
@Matt_SF yes actually it does move it‘s children out of the signal chain - the effect is negible in compiled networks because the compiler will not generate code for nodes that do nothing in the process callback but it‘s just that annoying side effect that prevented me to keep using that node…
-
@Christoph-Hart Ah ok, so I only need half a t-shirt :)