diff options
Diffstat (limited to 'mdala.lv2/SubSynth.ttl')
-rw-r--r-- | mdala.lv2/SubSynth.ttl | 42 |
1 files changed, 36 insertions, 6 deletions
diff --git a/mdala.lv2/SubSynth.ttl b/mdala.lv2/SubSynth.ttl index e08f332..5fd859f 100644 --- a/mdala.lv2/SubSynth.ttl +++ b/mdala.lv2/SubSynth.ttl @@ -1,7 +1,10 @@ @prefix doap: <http://usefulinc.com/ns/doap#> . @prefix lv2: <http://lv2plug.in/ns/lv2core#> . @prefix mdala: <http://drobilla.net/plugins/mdala/> . +@prefix param: <http://lv2plug.in/ns/ext/parameters#> . @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:SubSynth lv2:symbol "SubSynth" ; @@ -11,6 +14,9 @@ mdala:SubSynth lv2:pluginProperty lv2:hardRTCapable ; pg:mainInput mdala:mainIn ; pg:mainOutput mdala:mainOut ; + rdfs:comment """More bass than you could ever need! + +Be aware that you may be adding low frequency content outside the range of your monitor speakers. To avoid clipping, follow with a limiter plug-in (this can also give some giant hip-hop drum sounds!).""" ; lv2:port [ a lv2:InputPort , lv2:ControlPort ; @@ -19,7 +25,25 @@ mdala:SubSynth lv2:symbol "type" ; lv2:default 0 ; lv2:minimum 0.0 ; - lv2:maximum 1.0 + lv2:maximum 1.0 ; + lv2:portProperty lv2:enumeration ; + lv2:scalePoint [ + rdf:value 0.0 ; + rdfs:label "Distort" ; + rdfs:comment "Takes the existing low frequencies, clips them to produce harmonics at a constant level, then filters out the higher harmonics. Has a similar effect to compressing the low frequencies." + ] , [ + rdf:value 0.25 ; + rdfs:label "Divide" ; + rdfs:comment "As above, but works at an octave below the input frequency, like an octave divider guitar pedal." + ] , [ + rdf:value 0.5 ; + rdfs:label "Invert" ; + rdfs:comment "Flips the phase of the low frequency signal once per cycle to add a smooth sub-octave. A simplified version of the classic Sub-Harmonic Synthesizer." + ] , [ + rdf:value 0.75 ; + rdfs:label "Key Osc." ; + rdfs:comment """Adds a decaying "boom" - usually made with an oscillator before a noise gate keyed with the kick drum signal.""" + ] ] , [ a lv2:InputPort , lv2:ControlPort ; @@ -28,7 +52,8 @@ mdala:SubSynth lv2:symbol "level" ; lv2:default 0.3 ; lv2:minimum 0.0 ; - lv2:maximum 1.0 + lv2:maximum 1.0 ; + rdfs:comment "Amount of synthesized low frequency signal to be added" ] , [ a lv2:InputPort , lv2:ControlPort ; @@ -37,7 +62,8 @@ mdala:SubSynth lv2:symbol "tune" ; lv2:default 0.6 ; lv2:minimum 0.0 ; - lv2:maximum 1.0 + lv2:maximum 1.0 ; + rdfs:comment "Maximum frequency - keep as low as possible to reduce distortion. In Key Osc mode sets the oscillator frequency" ] , [ a lv2:InputPort , lv2:ControlPort ; @@ -46,7 +72,8 @@ mdala:SubSynth lv2:symbol "dry_mix" ; lv2:default 1 ; lv2:minimum 0.0 ; - lv2:maximum 1.0 + lv2:maximum 1.0 ; + rdfs:comment "Reduces the level of the original signal" ] , [ a lv2:InputPort , lv2:ControlPort ; @@ -55,7 +82,8 @@ mdala:SubSynth lv2:symbol "thresh" ; lv2:default 0.6 ; lv2:minimum 0.0 ; - lv2:maximum 1.0 + lv2:maximum 1.0 ; + rdfs:comment """Increase to "gate" the low frequency effect and stop unwanted background rumbling""" ] , [ a lv2:InputPort , lv2:ControlPort ; @@ -64,7 +92,9 @@ mdala:SubSynth lv2:symbol "release" ; lv2:default 0.65 ; lv2:minimum 0.0 ; - lv2:maximum 1.0 + lv2:maximum 1.0 ; + lv2:designation param:release ; + rdfs:comment "Decay time in Key Osc mode" ] , [ a lv2:InputPort , lv2:AudioPort ; |