David Braun

Results 219 comments of David Braun

I got it to compile with some changes ```c++ struct FAUST_API UI : public UIReal { UI() {} virtual ~UI() {} // add both below virtual bool isSoundUI() const {...

Thanks for those fixes! Maybe it's silent because the device is expecting MIDI from one of the 3.5 mm input, using https://electro-smith.com/products/trs-3-5mm-midi-adapter not micro-USB?

Sorry about the misleading README. At the time 3.13 didn't exist 😆 . The README is corrected and the next release will include Python 3.13, but it will take some...

I have examined Vital and Serum and have the same conclusion. These matrix routings can't be changed from the VST API of getting and setting parameters. As far as I'm...

Sorry I forgot that Vital presets aren’t FXP presets and can’t be loaded via DawDreamer. You’d have to dig into the Vital source code to automate this.

New module for this! https://github.com/DBraun/Vita

One use case I remember is that I wanted a checkbox for whether an LFO’s rate would use a slider in Hz or an nentry for time intervals like 1/4,...

> Ideally, we'd be able to support tabulate calls for methods that can't be jitted like this. I may be misunderstanding, but jitting them actually isn't a problem in the...

It seems that jitting _recursively_ is the problem then, instead of just trying to jit at the top level. However, my knowledge of the flax internals is limited.