From 1bd34fa795d0eac15d0dc9d4c756f19fc6624872 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sat, 31 Jul 2021 21:34:28 +0200 Subject: LV2: Port another batch of plugins, EQ - SurgeTide Some plugins won't compile for various reasons, these have been left out for now. One plugin failed autoporting, so that one's left out too. I have not tested these plugins yet, so no guarantees that they work, or that they work right. Please report any problems or if there's missing control info to the mailing list. --- plugins/LV2/src/EdIsDim/EdIsDim.ttl | 44 +++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 plugins/LV2/src/EdIsDim/EdIsDim.ttl (limited to 'plugins/LV2/src/EdIsDim/EdIsDim.ttl') diff --git a/plugins/LV2/src/EdIsDim/EdIsDim.ttl b/plugins/LV2/src/EdIsDim/EdIsDim.ttl new file mode 100644 index 0000000..1e54652 --- /dev/null +++ b/plugins/LV2/src/EdIsDim/EdIsDim.ttl @@ -0,0 +1,44 @@ +# Airwindows EdIsDim plugin description + +@prefix lv2: . +@prefix rdf: . +@prefix rdfs: . +@prefix units: . + + + a lv2:Plugin , + lv2:EffectsPlugin ; + lv2:project ; + + lv2:optionalFeature lv2:hardRTCapable ; + + # Define the ports for this plugin. + lv2:port [ + a lv2:InputPort , lv2:ControlPort ; + lv2:index 0 ; + lv2:symbol "A" ; + lv2:name "ediS/diM" ; + lv2:default 0.5 ; + lv2:minimum 0.0 ; + lv2:maximum 1.0 ; + ] , [ + a lv2:InputPort , lv2:AudioPort ; + lv2:index 1 ; + lv2:symbol "in_l" ; + lv2:name "In left" ; + ] , [ + a lv2:InputPort , lv2:AudioPort ; + lv2:index 2 ; + lv2:symbol "in_r" ; + lv2:name "In right" ; + ] , [ + a lv2:OutputPort , lv2:AudioPort ; + lv2:index 3 ; + lv2:symbol "out_l" ; + lv2:name "Out left" ; + ] , [ + a lv2:OutputPort , lv2:AudioPort ; + lv2:index 4 ; + lv2:symbol "out_r" ; + lv2:name "Out right" ; + ] . -- cgit v1.2.3