Dave Ramirez

Results 14 comments of Dave Ramirez

@asilvadesigns any update on this? at the very least could you share what you have? looks great :)

Great work. Really needing Ctrl+C at the moment, might give it a stab. I'd also like to see Ctrl+[ implemented as well (should be the same as Ctrl+C/Esc http://vim.wikia.com/wiki/Avoid_the_escape_key).

I'm doing some experiments with swapping out grpc as the transport method with a shared memory segment via boost::interprocess (http://www.boost.org/doc/libs/1_63_0/doc/html/interprocess.html) which should drastically improve performance. I'm hoping the this will...

Merged in the shared memory implementation here https://github.com/ramirezd42/vst-js/commit/7ed42b6e954cd5e295c5a66e56887e35c99ccefb After digging around a bit deeper the problem seems to be that something in [node-web-audio-api](https://github.com/sebpiq/node-web-audio-api) is causing the `onaudioprocess` callback to go...

Re-opening this as i'm no longer sure what's causing it

Also I confirmed that this isn't just an issue with PrimeEQ. It's consistent across all plugins i've tried

I believe so! It looks like JUCE will actually copy the .dll file to one with a .vst3 extension and use that: https://forum.juce.com/t/cant-build-vst3-or-aax-on-windows/16480 I don't have any windows devices available...

Honestly I would consider any use of this library to be a pretty big edge case! I'm away for the week right now but I'd be happy to take a...

It looks like AudioPluginFormat has a findAllTypesForFile() function you can use to get at the PluginDescription there in a way that will work for types other than VST3. https://docs.juce.com/master/classAudioUnitPluginFormat.html I...

Yup! there should be displayGUI() and hideGUI() methods available on PluginNode instances On Wed, Sep 9, 2020 at 4:30 PM weepy wrote: > is it possible to show the gui...