Hi, I am developing a guitar multi fx processor using mod-host and mod-ui.
I need to know that how do I use the following commands .
(r"/effect/preset/load/(/[A-Za-z0-9_/]+[^/])/?“, EffectPresetLoad),
(r”/effect/preset/save_new/(/[A-Za-z0-9_/]+[^/])/?“, EffectPresetSaveNew),
(r”/effect/preset/save_replace/(/[A-Za-z0-9_/]+[^/])/?“, EffectPresetSaveReplace),
(r”/effect/preset/delete/(/[A-Za-z0-9_/]+[^/])/?", EffectPresetDelete),
I can send Pedalboard and add remove effects commands succesfully using python .
Can anyone help me please to solve this. Thanks in advance .