Add a fast path to effect busses Get the number of outputs in the Synth Duplicate effect buses and process outputs separately Update the API wrappers to handle multichannel processing Accomodate multiple outputs in the VST plugin Publish a 8 stereo version of the LV2 plugin Publish a 8 stereo version of the VST3 plugin WIP Remove the duplication of effects Cleanups Debugs Tweaks Windows free error Port numbers change between plugin versions Fix warning Proper meter backgrounds
18 lines
768 B
Turtle
18 lines
768 B
Turtle
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
|
|
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
@prefix ui: <http://lv2plug.in/ns/extensions/ui#> .
|
|
|
|
<@LV2PLUGIN_URI@>
|
|
a lv2:Plugin ;
|
|
lv2:binary <Contents/Binary/@PROJECT_NAME@@CMAKE_SHARED_MODULE_SUFFIX@> ;
|
|
rdfs:seeAlso <@PROJECT_NAME@.ttl>, <controllers.ttl> .
|
|
|
|
<@LV2PLUGIN_URI@-multi>
|
|
a lv2:Plugin ;
|
|
lv2:binary <Contents/Binary/@PROJECT_NAME@@CMAKE_SHARED_MODULE_SUFFIX@> ;
|
|
rdfs:seeAlso <@PROJECT_NAME@.ttl>, <controllers.ttl> .
|
|
|
|
@LV2PLUGIN_IF_ENABLE_UI@<@LV2PLUGIN_URI@#ui>
|
|
@LV2PLUGIN_IF_ENABLE_UI@ a ui:@LV2_UI_TYPE@ ;
|
|
@LV2PLUGIN_IF_ENABLE_UI@ ui:binary <Contents/Binary/@PROJECT_NAME@_ui@CMAKE_SHARED_MODULE_SUFFIX@> ;
|
|
@LV2PLUGIN_IF_ENABLE_UI@ rdfs:seeAlso <@PROJECT_NAME@_ui.ttl> .
|