diff options
Diffstat (limited to 'fomp.lv2/triple_chorus.ttl')
-rw-r--r-- | fomp.lv2/triple_chorus.ttl | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/fomp.lv2/triple_chorus.ttl b/fomp.lv2/triple_chorus.ttl new file mode 100644 index 0000000..913c5c3 --- /dev/null +++ b/fomp.lv2/triple_chorus.ttl @@ -0,0 +1,90 @@ +@prefix doap: <http://usefulinc.com/ns/doap#> . +@prefix fomp: <http://drobilla.net/plugins/fomp/> . +@prefix lv2: <http://lv2plug.in/ns/lv2core#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix units: <http://lv2plug.in/ns/extensions/units#> . + +fomp:triple_chorus + a lv2:Plugin , + lv2:ChorusPlugin ; + doap:name "Triple chorus" ; + lv2:microVersion 0 ; + lv2:minorVersion 0 ; + lv2:optionalFeature lv2:hardRTCapable ; + lv2:project fomp: ; + lv2:port [ + a lv2:AudioPort , + lv2:InputPort ; + lv2:index 0 ; + lv2:name "Input" ; + lv2:symbol "in" + ] , [ + a lv2:AudioPort , + lv2:OutputPort ; + lv2:index 1 ; + lv2:name "Output1" ; + lv2:symbol "out1" + ] , [ + a lv2:AudioPort , + lv2:OutputPort ; + lv2:index 2 ; + lv2:name "Output2" ; + lv2:symbol "out2" + ] , [ + a lv2:AudioPort , + lv2:OutputPort ; + lv2:index 3 ; + lv2:name "Output3" ; + lv2:symbol "out3" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 0.0 ; + lv2:index 4 ; + lv2:maximum 30.0 ; + lv2:minimum 0.0 ; + lv2:name "Delay" ; + lv2:symbol "delay" ; + units:unit units:ms + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:index 5 ; + lv2:maximum 10.0 ; + lv2:minimum 0.003 ; + lv2:name "Mod Frequency 1" ; + lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ; + lv2:symbol "mod_freq_1" ; + units:unit units:hz + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 0.0 ; + lv2:index 6 ; + lv2:maximum 10.0 ; + lv2:minimum 0.0 ; + lv2:name "Mod Amplitude 1" ; + lv2:symbol "mod_amp_1" ; + units:unit units:ms + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:index 7 ; + lv2:maximum 30.0 ; + lv2:minimum 0.01 ; + lv2:name "Mod Frequency 2" ; + lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ; + lv2:symbol "mod_freq_2" ; + units:unit units:hz + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 0.0 ; + lv2:index 8 ; + lv2:maximum 3.0 ; + lv2:minimum 0.0 ; + lv2:name "Mod Amplitude 2" ; + lv2:symbol "mod_amp_2" ; + units:unit units:ms + ] ; + rdfs:comment "The same as CS Chorus 2, but has three separate outputs. Plan L,C,R for a nice stereo effect." . |