Hi guys, I'm working on a groovebox patch, thing are working well but for some reasons I need to split the processing value between the different core. So I began spliting my audio processing subpatch by puting them in pd~ subprocesses. All subprocesses run but I need to send value to them to get everything to work. So I tried sending messages such as it is described in the .help file of pd~ but it doesn't seem to work. It's probably just not doing it right so is there someone here that could explain me how the messages are sent from a parent patch to a subprocess ? And if there someone here able to sending me an example of code using the messages with pd~ it would be great.
-
[solved] How does pd~ messages work ?
-
@lysergik messages have to be put into the left inlet of [pd~]
If you have inside [pd~] a receive object [r volume-3] for example you would have to send a message with it's value like this.......
Don't forget that dsp has to be turned on in the main patch before [pd~] will run at all.
David. -
@whale-av Okay thanks ! It makes more sense explain this way than in the .help file.