aboutsummaryrefslogtreecommitdiffstats
path: root/mdala.lv2/Combo.ttl
diff options
context:
space:
mode:
Diffstat (limited to 'mdala.lv2/Combo.ttl')
-rw-r--r--mdala.lv2/Combo.ttl53
1 files changed, 43 insertions, 10 deletions
diff --git a/mdala.lv2/Combo.ttl b/mdala.lv2/Combo.ttl
index 8daee00..d82f516 100644
--- a/mdala.lv2/Combo.ttl
+++ b/mdala.lv2/Combo.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:Combo
a lv2:Plugin ,
@@ -13,6 +15,7 @@ mdala:Combo
lv2:pluginProperty lv2:hardRTCapable ;
pg:mainInput mdala:mainIn ;
pg:mainOutput mdala:mainOut ;
+ rdfs:comment "This plug-in can sound quite subtle but comes alive when used on guitar with the drive turned up! Remember that distortion may not sound good on time-based effects such as delay and reverb, so put those effects after this plug, or after a separate distortion plug with Combo acting only as a speaker simulator." ;
lv2:port [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -21,7 +24,30 @@ mdala:Combo
lv2:symbol "model" ;
lv2:default 0 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ lv2:portProperty lv2:enumeration ;
+ lv2:scalePoint [
+ rdfs:label "D.I. (flat frequency response)" ;
+ rdf:value 0.0
+ ] , [
+ rdfs:label "Tradtional speaker simulator" ;
+ rdf:value 1.0
+ ] , [
+ rdfs:label "Small radio speaker" ;
+ rdf:value 2.0
+ ] , [
+ rdfs:label "Small combo (close mic)" ;
+ rdf:value 3.0
+ ] , [
+ rdfs:label "Small combo (far mic)" ;
+ rdf:value 4.0
+ ] , [
+ rdfs:label "Large stack (front mic)" ;
+ rdf:value 5.0
+ ] , [
+ rdfs:label "Large stack (side mic, scooped mids)" ;
+ rdf:value 6.0
+ ]
] , [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -30,7 +56,8 @@ mdala:Combo
lv2:symbol "drive" ;
lv2:default 0.5 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ rdfs:comment "Amount of clipping"
] , [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -39,7 +66,8 @@ mdala:Combo
lv2:symbol "bias" ;
lv2:default 0.5 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ rdfs:comment """Clip one side of the waveform more than the other for rougher or "gated" effects (use an oscilloscope plug-in to see what's happening)"""
] , [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -48,16 +76,19 @@ mdala:Combo
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:ControlPort ;
lv2:index 4 ;
- lv2:name "Process" ;
- lv2:symbol "process" ;
- lv2:default 0.4 ;
+ lv2:name "Stereo" ;
+ lv2:symbol "stereo" ;
+ lv2:default 0.0 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ lv2:portProperty lv2:toggled ;
+ rdfs:comment "Process in stereo. Defaults to Mono to reduce processor usage."
] , [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -66,7 +97,8 @@ mdala:Combo
lv2:symbol "hpf_freq" ;
lv2:default 0 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ rdfs:comment "High-Pass Filter Cutoff Frequency"
] , [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -75,7 +107,8 @@ mdala:Combo
lv2:symbol "hpf_reso" ;
lv2:default 0.5 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ rdfs:comment "High-Pass Filter Resonance"
] , [
a lv2:InputPort ,
lv2:AudioPort ;