-
dreamer
posted in technical issues • read more@crttrkix Subpatches don't get "passed on" values of anything. That's not how they work.
The name of a subpatch is just that: a name.
Everything else a subpatch inherits from the parent, $0 (identity) and any arguments.
-
dreamer
posted in technical issues • read moreWhy would the subpatches have different contents?
You've put the same code in the subpatch inside the abstraction, so every instance of that abstractions contains the same code and subpatch.
-
dreamer
posted in technical issues • read moreIf you are really this scared of the concept of a "chat room" then just post a dedicated ticket on github.
-
dreamer
posted in patch~ • read more"MIT License with Attribution" is not a thing.
MIT License already requires attribution:"The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software."
So someone has to provide this copyright notice as part of any software that uses it, thus providing attribution.
Sorry to say, but your custom license does not appear to be valid open source. Or at least very disputably so.
I recommend that you pick a proper open source license: https://opensource.org/licenses -
dreamer
posted in news • read moreAnd we got a new release! many updates and bugfixes.
Full release notes:
https://github.com/plugdata-team/plugdata/releases/tag/v0.9.2 -
-
dreamer
posted in technical issues • read moreThis is because symbol can't handle numbers, it requires strings.
By adding a string (-in your case) before or after$0it turns it into a string.Try using
[f $0]instead:
-
dreamer
posted in technical issues • read moreThis doesn't make any sense. RTSP is for video streaming, and this specific package is for Perl programs ..
Why do you think this even remotely applies to this topic?
-
dreamer
posted in technical issues • read moreFor sending midi over the network there is rtpmidi:
Windows: https://www.tobias-erichsen.de/software/rtpmidi.html
Linux: https://github.com/davidmoreno/rtpmididIt is/should be built in on macOS.
But as said above OSC is probably easier to setup (and much higher resolution)
-
dreamer
posted in technical issues • read moreYes.
For instance this monosynth patch that loads two separate waveforms and cross-fades between them:

-
dreamer
posted in technical issues • read more@mbbaker No, a larger block size will allow the CPU more time to process the audio.
-
-
dreamer
posted in technical issues • read moreYou will have to create the same behavior using what is available indeed. Also checkout compatible abstractions like https://github.com/Wasted-Audio/heavylib (included in plugdata)
In the strictest sense you can use a "list", but not the
[list]object.
A list is simply a message that contains multiple values, like[1 2 3 4(Similarly you can use a table/graphical array (canvas object), but not the
[array]object. -
dreamer
posted in technical issues • read morevst1 does not exist, do you mean vst2 or vst3?
To host lv2 plugins there is https://github.com/jnonis/pd-lv2
For hosting vst2/3 plugins there is https://github.com/Spacechild1/vstpluginAnd no it is not possible to run desktop audio plugins hosted inside a pd patch on the Daisy.
Please see https://wasted-audio.github.io/hvcc/docs/09.supported_vanilla_objects.html for supported objects in the Heavy Compiler. -
dreamer
posted in technical issues • read more@timothyschoen relevant ticket: https://github.com/juce-framework/JUCE/issues/333
The issue is no longer specific to Linux, as JUCE now also supports Jack Audio on macOS and Windows (and with the relatively simple patch I published last year it can be easily ported to older versions of JUCE).
-
dreamer
posted in technical issues • read moreWhich camera is it? (there seems to be more than one for Raspi)
Make sure you have the v4l2 drivers for it, otherwise it won't be recognized.
-
dreamer
posted in news • read moreIn what way is this library "designed specifically for Windows 64-bit systems" ?
Also I recommend against committing zip files (and other release binaries) into your repository as it will blow up the repository size when you do updates.
Does Codeberg not support release artifacts?
