diff options
author | David Robillard <d@drobilla.net> | 2012-08-20 05:16:04 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-08-20 05:16:04 +0000 |
commit | 734a9f490f2f8cb4552c71bfac8fc779f836c436 (patch) | |
tree | 34d286b3e8cbd291267ebe3ae6804ba52959c68b /fomp.lv2/mvclpf3.ttl | |
download | fomp.lv2-734a9f490f2f8cb4552c71bfac8fc779f836c436.tar.gz fomp.lv2-734a9f490f2f8cb4552c71bfac8fc779f836c436.tar.bz2 fomp.lv2-734a9f490f2f8cb4552c71bfac8fc779f836c436.zip |
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
Diffstat (limited to 'fomp.lv2/mvclpf3.ttl')
-rw-r--r-- | fomp.lv2/mvclpf3.ttl | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/fomp.lv2/mvclpf3.ttl b/fomp.lv2/mvclpf3.ttl new file mode 100644 index 0000000..7b04e9c --- /dev/null +++ b/fomp.lv2/mvclpf3.ttl @@ -0,0 +1,99 @@ +@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:mvclpf3 + a lv2:Plugin , + lv2:LowpassPlugin ; + doap:name "Moog Low-Pass Filter 3" ; + 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 "out" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 0.0 ; + lv2:index 10 ; + lv2:maximum 15.0 ; + lv2:minimum -15.0 ; + lv2:name "Output gain" ; + lv2:symbol "out_gain" ; + units:unit units:db + ] , [ + a lv2:CVPort , + lv2:InputPort ; + lv2:index 2 ; + lv2:name "Frequency Mod" ; + lv2:symbol "freq_mod" + ] , [ + a lv2:CVPort , + lv2:InputPort ; + lv2:index 3 ; + lv2:name "Exp. Frequency Mod" ; + lv2:symbol "exp_fm" + ] , [ + a lv2:CVPort , + lv2:InputPort ; + lv2:index 4 ; + lv2:name "Resonance Mod" ; + lv2:symbol "res_mod" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 0.0 ; + lv2:index 5 ; + lv2:maximum 10.0 ; + lv2:minimum -60.0 ; + lv2:name "Input gain" ; + lv2:symbol "in_gain" ; + units:unit units:db + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 0.0 ; + lv2:index 6 ; + lv2:maximum 6.0 ; + lv2:minimum -6.0 ; + lv2:name "Frequency" ; + lv2:symbol "freq" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:index 7 ; + lv2:maximum 10.0 ; + lv2:minimum 0.0 ; + lv2:name "Exp FM gain" ; + lv2:symbol "exp_fm_gain" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:index 8 ; + lv2:maximum 1.0 ; + lv2:minimum 0.0 ; + lv2:name "Resonance" ; + lv2:symbol "res" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:index 9 ; + lv2:maximum 1.0 ; + lv2:minimum 0.0 ; + lv2:name "Resonance gain" ; + lv2:symbol "res_gain" + ] ; + rdfs:comment "Based on variant 2, with two differences. It uses the the technique described by Stilson and Smith to extend the constant-Q range, and the internal sample frequency is doubled, giving a better approximation to the non-linear behaviour at high freqencies. This variant has high Q over the entire frequency range and will oscillate up to above 10 kHz, while the two others show a decreasing Q at high frequencies. This filter is reasonably well tuned, and can be 'played' as a VCO up to at least 5 kHz." . |