aboutsummaryrefslogtreecommitdiffstats
path: root/mdala.lv2/ThruZero.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-28 00:19:37 +0000
committerDavid Robillard <d@drobilla.net>2012-03-28 00:19:37 +0000
commit71b9c3ae5fb85414f56c152eaf9d075bbfc0f6ff (patch)
tree26362d908f0bf1a9480d511487ac6e006d3f02b7 /mdala.lv2/ThruZero.ttl
parentcff1d802d8208f675e33ae50a5ac34018c1367c7 (diff)
downloadmda.lv2-71b9c3ae5fb85414f56c152eaf9d075bbfc0f6ff.tar.gz
mda.lv2-71b9c3ae5fb85414f56c152eaf9d075bbfc0f6ff.tar.bz2
mda.lv2-71b9c3ae5fb85414f56c152eaf9d075bbfc0f6ff.zip
Mark up control properties, port groups, and add documentation for plugins and ports.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/mdala.lv2@4118 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'mdala.lv2/ThruZero.ttl')
-rw-r--r--mdala.lv2/ThruZero.ttl19
1 files changed, 14 insertions, 5 deletions
diff --git a/mdala.lv2/ThruZero.ttl b/mdala.lv2/ThruZero.ttl
index 291fb2c..c47881a 100644
--- a/mdala.lv2/ThruZero.ttl
+++ b/mdala.lv2/ThruZero.ttl
@@ -2,6 +2,7 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix mdala: <http://drobilla.net/plugins/mdala/> .
@prefix pg: <http://lv2plug.in/ns/ext/port-groups#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
mdala:ThruZero
a lv2:Plugin ,
@@ -13,6 +14,9 @@ mdala:ThruZero
lv2:pluginProperty lv2:hardRTCapable ;
pg:mainInput mdala:mainIn ;
pg:mainOutput mdala:mainOut ;
+ rdfs:comment """Tape flanger and ADT
+
+This plug simulates tape-flanging, where two copies of a signal cancel out completely as the tapes pass each other. It can also be used for other "modulated delay" effects such as phasing and simple chorusing.""" ;
lv2:port [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -21,7 +25,8 @@ mdala:ThruZero
lv2:symbol "rate" ;
lv2:default 0.3 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ rdfs:comment "Modulation rate (sine wave) - set to minimum for static comb filtering"
] , [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -30,7 +35,8 @@ mdala:ThruZero
lv2:symbol "depth" ;
lv2:default 0.43 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ rdfs:comment "Maximum modulation depth"
] , [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -39,7 +45,8 @@ mdala:ThruZero
lv2:symbol "mix" ;
lv2:default 0.47 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ rdfs:comment "Wet / dry mix - set to 50% for complete cancelling"
] , [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -48,7 +55,8 @@ mdala:ThruZero
lv2:symbol "feedback" ;
lv2:default 0.3 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ rdfs:comment """Add positive or negative feedback for harsher or "ringing" sound"""
] , [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -57,7 +65,8 @@ mdala:ThruZero
lv2:symbol "depth_mod" ;
lv2:default 1 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ rdfs:comment "Modulation depth - set to less than 100% to limit build up of low fequencies with feedback"
] , [
a lv2:InputPort ,
lv2:AudioPort ;