-
dreamer
posted in technical issues • read moreWe have added
exprandexpr~support this month and it should come to the plugdata toolchain shortly! -
dreamer
posted in technical issues • read more@donnerbono Latest HVCC now supports expr and expr~!
You will have to put
0.5instead of.5though
Some other limitations also apply: https://wasted-audio.github.io/hvcc/docs/02.getting_started.html#known-limitations
-
dreamer
posted in technical issues • read moreClearly you need some header files. On debian based systems
alsa/asoundlib.hcomes fromlibasound2-dev -
dreamer
posted in technical issues • read moreYou need to install all the build requirements on your machine first ..
-
dreamer
posted in output~ • read moreAt least it's extremely fun to play with! -> https://github.com/evgenykochetkov/pd-mf
-
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.
