diff options
author | David Robillard <d@drobilla.net> | 2012-08-21 23:51:21 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-08-21 23:51:21 +0000 |
commit | bd2f4150a8e78a4e09fb962782a07821ee7ae7f1 (patch) | |
tree | f59243ed2f9d247b311b03a3834bf55961af3626 /fomp.lv2/parametric1.ttl | |
parent | 734a9f490f2f8cb4552c71bfac8fc779f836c436 (diff) | |
download | fomp.lv2-bd2f4150a8e78a4e09fb962782a07821ee7ae7f1.tar.gz fomp.lv2-bd2f4150a8e78a4e09fb962782a07821ee7ae7f1.tar.bz2 fomp.lv2-bd2f4150a8e78a4e09fb962782a07821ee7ae7f1.zip |
Add parametric EQ and auto-wah.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/fomp.lv2@4735 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'fomp.lv2/parametric1.ttl')
-rw-r--r-- | fomp.lv2/parametric1.ttl | 195 |
1 files changed, 195 insertions, 0 deletions
diff --git a/fomp.lv2/parametric1.ttl b/fomp.lv2/parametric1.ttl new file mode 100644 index 0000000..8118107 --- /dev/null +++ b/fomp.lv2/parametric1.ttl @@ -0,0 +1,195 @@ +@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:parametric1 + a lv2:Plugin , + lv2:ParaEQPlugin ; + doap:name "4-Band Parametric Filter" ; + lv2:microVersion 0 ; + lv2:minorVersion 0 ; + lv2:optionalFeature lv2:hardRTCapable ; + 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 2 ; + lv2:name "Filter" ; + lv2:portProperty lv2:toggled ; + lv2:symbol "filter" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 0.0 ; + lv2:index 3 ; + lv2:maximum 20.0 ; + lv2:minimum -20.0 ; + lv2:name "Gain" ; + lv2:symbol "gain" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 0.0 ; + lv2:index 4 ; + lv2:name "Section 1" ; + lv2:portProperty lv2:toggled ; + lv2:symbol "sec_1" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 200.0 ; + lv2:index 5 ; + lv2:maximum 2000.0 ; + lv2:minimum 20.0 ; + lv2:name "Frequency 1" ; + lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ; + lv2:symbol "freq_1" ; + units:unit units:hz + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 1.0 ; + lv2:index 6 ; + lv2:maximum 8.0 ; + lv2:minimum 0.125 ; + lv2:name "Bandwidth 1" ; + lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ; + lv2:symbol "bw_1" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 0.0 ; + lv2:index 7 ; + lv2:maximum 20.0 ; + lv2:minimum -20.0 ; + lv2:name "Gain 1" ; + lv2:symbol "gain_1" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 0.0 ; + lv2:index 8 ; + lv2:name "Section 2" ; + lv2:portProperty lv2:toggled ; + lv2:symbol "sec_2" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 400.0 ; + lv2:index 9 ; + lv2:maximum 4000.0 ; + lv2:minimum 40.0 ; + lv2:name "Frequency 2" ; + lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ; + lv2:symbol "freq_2" ; + units:unit units:hz + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 1.0 ; + lv2:index 10 ; + lv2:maximum 8.0 ; + lv2:minimum 0.125 ; + lv2:name "Bandwidth 2" ; + lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ; + lv2:symbol "bw_2" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 0.0 ; + lv2:index 11 ; + lv2:maximum 20.0 ; + lv2:minimum -20.0 ; + lv2:name "Gain 2" ; + lv2:symbol "gain_2" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 0.0 ; + lv2:index 12 ; + lv2:name "Section 3" ; + lv2:portProperty lv2:toggled ; + lv2:symbol "sec_3" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 1000.0 ; + lv2:index 13 ; + lv2:maximum 10000.0 ; + lv2:minimum 100.0 ; + lv2:name "Frequency 3" ; + lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ; + lv2:symbol "freq_3" ; + units:unit units:hz + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 1.0 ; + lv2:index 14 ; + lv2:maximum 8.0 ; + lv2:minimum 0.125 ; + lv2:name "Bandwidth 3" ; + lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ; + lv2:symbol "bw_3" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 0.0 ; + lv2:index 15 ; + lv2:maximum 20.0 ; + lv2:minimum -20.0 ; + lv2:name "Gain 3" ; + lv2:symbol "gain_3" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 0.0 ; + lv2:index 16 ; + lv2:name "Section 4" ; + lv2:portProperty lv2:toggled ; + lv2:symbol "sec_4" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 2000.0 ; + lv2:index 17 ; + lv2:maximum 20000.0 ; + lv2:minimum 200.0 ; + lv2:name "Frequency 4" ; + lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ; + lv2:symbol "freq_4" ; + units:unit units:hz + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 1.0 ; + lv2:index 18 ; + lv2:maximum 8.0 ; + lv2:minimum 0.125 ; + lv2:name "Bandwidth 4" ; + lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ; + lv2:symbol "bw_4" + ] , [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:default 0.0 ; + lv2:index 19 ; + lv2:maximum 20.0 ; + lv2:minimum -20.0 ; + lv2:name "Gain 4" ; + lv2:symbol "gain_4" + ] . |