From 734a9f490f2f8cb4552c71bfac8fc779f836c436 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 20 Aug 2012 05:16:04 +0000 Subject: Add fomp.lv2, a port of Fons' modular-oriented LADSPA plugins to LV2. git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/fomp.lv2@4727 a436a847-0d15-0410-975c-d299462d15a1 --- fomp.lv2/cs_chorus2.ttl | 78 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 fomp.lv2/cs_chorus2.ttl (limited to 'fomp.lv2/cs_chorus2.ttl') diff --git a/fomp.lv2/cs_chorus2.ttl b/fomp.lv2/cs_chorus2.ttl new file mode 100644 index 0000000..acfe3e1 --- /dev/null +++ b/fomp.lv2/cs_chorus2.ttl @@ -0,0 +1,78 @@ +@prefix doap: . +@prefix fomp: . +@prefix lv2: . +@prefix rdfs: . +@prefix units: . + +fomp:cs_chorus2 + a lv2:Plugin , + lv2:ChorusPlugin ; + doap:name "CS Chorus 2" ; + 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 "Output" ; + lv2:symbol "out1" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 0.0 ; + lv2:index 2 ; + 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 3 ; + lv2:maximum 10.0 ; + lv2:minimum 0.003 ; + lv2:name "Mod Frequency 1" ; + lv2:portProperty ; + lv2:symbol "mod_freq_1" ; + units:unit units:ms + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 0.0 ; + lv2:index 4 ; + 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 5 ; + lv2:maximum 30.0 ; + lv2:minimum 0.01 ; + lv2:name "Mod Frequency 2" ; + lv2:portProperty ; + lv2:symbol "mod_freq_2" ; + units:unit units:hz + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 0.0 ; + lv2:index 6 ; + lv2:maximum 3.0 ; + lv2:minimum 0.0 ; + lv2:name "Mod Amplitude 2" ; + lv2:symbol "mod_amp_2" ; + units:unit units:ms + ] ; + rdfs:comment "Functionally identical to variant 1, but upsamples the input to the delay lines in an attempt to mitigate the errors produced by the linear interpolation at the output." . -- cgit v1.2.1