aboutsummaryrefslogtreecommitdiffstats
path: root/mdala.lv2/Splitter.ttl
diff options
context:
space:
mode:
Diffstat (limited to 'mdala.lv2/Splitter.ttl')
-rw-r--r--mdala.lv2/Splitter.ttl61
1 files changed, 54 insertions, 7 deletions
diff --git a/mdala.lv2/Splitter.ttl b/mdala.lv2/Splitter.ttl
index f7c7ebf..a9a5945 100644
--- a/mdala.lv2/Splitter.ttl
+++ b/mdala.lv2/Splitter.ttl
@@ -2,6 +2,8 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix mdala: <http://drobilla.net/plugins/mdala/> .
@prefix pg: <http://lv2plug.in/ns/ext/port-groups#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
mdala:Splitter
a lv2:Plugin ,
@@ -13,6 +15,7 @@ mdala:Splitter
lv2:pluginProperty lv2:hardRTCapable ;
pg:mainInput mdala:mainIn ;
pg:mainOutput mdala:mainOut ;
+ rdfs:comment """This plug-in can split a signal based on frequency or level, for example for producing dynamic effects where only loud drum hits are sent to a reverb. Other functions include a simple "spectral gate" in INVERSE mode and a conventional gate and filter for separating drum sounds in NORMAL mode.""" ;
lv2:port [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -21,7 +24,25 @@ mdala:Splitter
lv2:symbol "mode" ;
lv2:default 0.1 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ lv2:portProperty lv2:enumeration ;
+ lv2:scalePoint [
+ rdf:value 0.0 ;
+ rdfs:label "Normal" ;
+ rdfs:comment "Output as selected with Frequency and Level controls"
+ ] , [
+ rdf:value 0.25 ;
+ rdfs:label "Inverse" ;
+ rdfs:comment "Inverse of shown selection (e.g. everything except low frequencies at high level)"
+ ] , [
+ rdf:value 0.5 ;
+ rdfs:label "Normal Inverse" ;
+ rdfs:comment "Left / Right split of above"
+ ] , [
+ rdf:value 0.75 ;
+ rdfs:label "Inverse Normal" ;
+ rdfs:comment "Right / Left split of above"
+ ]
] , [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -30,7 +51,8 @@ mdala:Splitter
lv2:symbol "freq" ;
lv2:default 0.5 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ rdfs:comment "Crossover frequency"
] , [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -39,7 +61,18 @@ mdala:Splitter
lv2:symbol "freq_sw" ;
lv2:default 0.25 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ lv2:portProperty lv2:enumeration ;
+ lv2:scalePoint [
+ rdfs:label "Low" ;
+ rdf:value 0.0
+ ] , [
+ rdfs:label "All" ;
+ rdf:value 0.5
+ ] , [
+ rdfs:label "High" ;
+ rdf:value 1.0
+ ]
] , [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -48,7 +81,8 @@ mdala:Splitter
lv2:symbol "level" ;
lv2:default 0.5 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ rdfs:comment "Gate threshold"
] , [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -57,7 +91,18 @@ mdala:Splitter
lv2:symbol "level_sw" ;
lv2:default 0.5 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ lv2:portProperty lv2:enumeration ;
+ lv2:scalePoint [
+ rdfs:label "Low" ;
+ rdf:value 0.0
+ ] , [
+ rdfs:label "All" ;
+ rdf:value 0.5
+ ] , [
+ rdfs:label "High" ;
+ rdf:value 1.0
+ ]
] , [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -66,7 +111,8 @@ mdala:Splitter
lv2:symbol "envelope" ;
lv2:default 0.5 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ rdfs:comment "Gate envelope speed"
] , [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -75,7 +121,8 @@ mdala:Splitter
lv2:symbol "output" ;
lv2:default 0.5 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ rdfs:comment "Level trim"
] , [
a lv2:InputPort ,
lv2:AudioPort ;