mikeoliphant / neural-amp-modeler-lv2

Neural Amp Modeler LV2 plugin implementation
GNU General Public License v3.0
202 stars 25 forks source link

How to load a model? #23

Closed buscon closed 1 year ago

buscon commented 1 year ago

It might be a trivial question, but I do not find a way to do it.

How do you load a model? I am loading neural-amp-modeler-lv2 in a carla rack, but I cannot find a way to load a model.

rusk911 commented 1 year ago

the "gear" button for showing GUI for other plugins do open a model load window.

Screenshot at 2023-05-17 15-26-41

buscon commented 1 year ago

thanks for your answer.

If I click the "gear" button using carla rack as a standalone, it works as expected. But when I load carla rack as a plugin (whether vst or lv2) in Reaper, then nothing happens. Is this an already known problem?

rusk911 commented 1 year ago

Please ask Carla maintainer @falkTX

falkTX commented 1 year ago

yes, this is sorta expected. when carla is a plugin, the DSP side is split and runs on the host/daw process. I do not have a way to get a file dialog open in there for now.

you can try via https://github.com/DISTRHO/Ildaeil as that includes a file dialog for such plugins. might be a way to get it to run in reaper (which is silly, loading LV2 under an LV2 host...)

buscon commented 1 year ago

yes, this is sorta expected. when carla is a plugin, the DSP side is split and runs on the host/daw process. I do not have a way to get a file dialog open in there for now.

you can try via https://github.com/DISTRHO/Ildaeil as that includes a file dialog for such plugins. might be a way to get it to run in reaper (which is silly, loading LV2 under an LV2 host...)

thanks for your answer, I will look into that.