aboutsummaryrefslogtreecommitdiffstats
path: root/fomp.lv2
diff options
context:
space:
mode:
Diffstat (limited to 'fomp.lv2')
-rw-r--r--fomp.lv2/autowah.ttl75
-rw-r--r--fomp.lv2/cs_chorus1.ttl77
-rw-r--r--fomp.lv2/cs_chorus2.ttl78
-rw-r--r--fomp.lv2/cs_phaser1.ttl111
-rw-r--r--fomp.lv2/cs_phaser1_lfo.ttl112
-rw-r--r--fomp.lv2/manifest.ttl.in110
-rw-r--r--fomp.lv2/mvchpf1.ttl82
-rw-r--r--fomp.lv2/mvclpf1.ttl104
-rw-r--r--fomp.lv2/mvclpf2.ttl104
-rw-r--r--fomp.lv2/mvclpf3.ttl104
-rw-r--r--fomp.lv2/mvclpf4.ttl120
-rw-r--r--fomp.lv2/parametric1.ttl196
-rw-r--r--fomp.lv2/pulse_vco.ttl95
-rw-r--r--fomp.lv2/rec_vco.ttl127
-rw-r--r--fomp.lv2/reverb.ttl137
-rw-r--r--fomp.lv2/reverb_amb.ttl149
-rw-r--r--fomp.lv2/saw_vco.ttl103
-rw-r--r--fomp.lv2/triple_chorus.ttl90
18 files changed, 1974 insertions, 0 deletions
diff --git a/fomp.lv2/autowah.ttl b/fomp.lv2/autowah.ttl
new file mode 100644
index 0000000..56dd8a0
--- /dev/null
+++ b/fomp.lv2/autowah.ttl
@@ -0,0 +1,75 @@
+@prefix doap: <http://usefulinc.com/ns/doap#> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
+@prefix fomp: <http://drobilla.net/plugins/fomp/> .
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+<http://drobilla.net/plugins/fomp/autowah>
+ a lv2:Plugin ,
+ lv2:FilterPlugin ;
+ doap:name "Auto-wah" ;
+ 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 2 ;
+ lv2:maximum 20.0 ;
+ lv2:minimum -20.0 ;
+ lv2:name "Drive" ;
+ lv2:symbol "drive"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.5 ;
+ lv2:index 3 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Decay" ;
+ lv2:symbol "decay"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.5 ;
+ lv2:index 4 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Range" ;
+ lv2:symbol "range"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.5 ;
+ lv2:index 5 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Freq" ;
+ lv2:symbol "freq"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.5 ;
+ lv2:index 6 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Mix" ;
+ lv2:symbol "mix"
+ ] .
diff --git a/fomp.lv2/cs_chorus1.ttl b/fomp.lv2/cs_chorus1.ttl
new file mode 100644
index 0000000..326195b
--- /dev/null
+++ b/fomp.lv2/cs_chorus1.ttl
@@ -0,0 +1,77 @@
+@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:cs_chorus1
+ a lv2:Plugin ,
+ lv2:ChorusPlugin ;
+ doap:name "CS Chorus 1" ;
+ 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 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 <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 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 <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 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 "Based on a CSound orchestra file by Sean Costello. There are two low frequency oscillators, each having three outputs that are 120 degrees apart in phase. The summed outputs modulate three delay lines. Make sure the static delay (first parameter) is at least equal to the sum of the two modulation depths." .
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: <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: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 <http://lv2plug.in/ns/ext/port-props#logarithmic> ;
+ 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 <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 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." .
diff --git a/fomp.lv2/cs_phaser1.ttl b/fomp.lv2/cs_phaser1.ttl
new file mode 100644
index 0000000..91aea11
--- /dev/null
+++ b/fomp.lv2/cs_phaser1.ttl
@@ -0,0 +1,111 @@
+@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:cs_phaser1
+ a lv2:Plugin ,
+ lv2:PhaserPlugin ;
+ doap:name "CS Phaser 1" ;
+ 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 1.0 ;
+ lv2:minimum -1.0 ;
+ lv2:name "Feedback gain" ;
+ lv2:symbol "fb_gain"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 11 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum -1.0 ;
+ lv2:name "Output mix" ;
+ lv2:symbol "out_mix"
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:index 2 ;
+ lv2:name "FM" ;
+ lv2:symbol "fm"
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:index 3 ;
+ lv2:name "Exp FM" ;
+ lv2:symbol "exp_fm"
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:index 4 ;
+ lv2:name "Lin FM" ;
+ lv2:symbol "lin_fm"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 5 ;
+ lv2:maximum 10.0 ;
+ lv2:minimum -40.0 ;
+ lv2:name "Input gain" ;
+ lv2:symbol "in_gain" ;
+ units:unit units:db
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:index 6 ;
+ lv2:maximum 30.0 ;
+ lv2:minimum 1.0 ;
+ lv2:default 1.0 ;
+ lv2:name "Sections" ;
+ lv2:portProperty lv2:integer ;
+ lv2:symbol "sections"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 7 ;
+ lv2:maximum 6.0 ;
+ lv2:minimum -6.0 ;
+ lv2:name "Frequency" ;
+ lv2:symbol "freq"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:index 8 ;
+ lv2:maximum 10.0 ;
+ lv2:minimum 0.0 ;
+ lv2:default 0.0 ;
+ lv2:name "Exp FM gain" ;
+ lv2:symbol "exp_fm_gain"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:index 9 ;
+ lv2:maximum 10.0 ;
+ lv2:minimum 0.0 ;
+ lv2:default 0.0 ;
+ lv2:name "Lin FM gain" ;
+ lv2:symbol "lin_fm_gain"
+ ] ;
+ rdfs:comment "This is similar to the CSound module 'phaser1'. It's a series connection of 1 to 30 first order allpass filters with feedback. For 'Output mix', the range -1 to 0 crossfades between the inverted output and the input, and the range 0 to 1 crossfades between the input and the non-inverted output. Without feedback, the maximum effect is at +/- 0.5. For both 'Feedback gain' and 'Output mix', the best polarity depends on whether the number of sections is even or odd." .
diff --git a/fomp.lv2/cs_phaser1_lfo.ttl b/fomp.lv2/cs_phaser1_lfo.ttl
new file mode 100644
index 0000000..74cba4d
--- /dev/null
+++ b/fomp.lv2/cs_phaser1_lfo.ttl
@@ -0,0 +1,112 @@
+@prefix doap: <http://usefulinc.com/ns/doap#> .
+@prefix fomp: <http://drobilla.net/plugins/fomp/> .
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix units: <http://lv2plug.in/ns/extensions/units#> .
+
+fomp:cs_phaser1_lfo
+ a lv2:Plugin ,
+ lv2:PhaserPlugin ;
+ doap:name "CS Phaser 1 with LFO" ;
+ 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 ;
+ units:unit units:db ;
+ lv2:default 0.0 ;
+ lv2:index 2 ;
+ lv2:maximum 10.0 ;
+ lv2:minimum -40.0 ;
+ lv2:name "Input gain" ;
+ lv2:symbol "in_gain"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:index 3 ;
+ lv2:maximum 30.0 ;
+ lv2:minimum 1.0 ;
+ lv2:name "Sections" ;
+ lv2:portProperty lv2:integer ;
+ lv2:symbol "sections"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 4 ;
+ lv2:maximum 6.0 ;
+ lv2:minimum -6.0 ;
+ lv2:name "Frequency" ;
+ lv2:symbol "freq"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:index 5 ;
+ lv2:maximum 30.0 ;
+ lv2:minimum 0.01 ;
+ lv2:name "LFO frequency" ;
+ lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ;
+ lv2:symbol "lfo_freq" ;
+ units:unit units:hz
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 6 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum -1.0 ;
+ lv2:name "LFO waveform" ;
+ lv2:symbol "lfo_waveform" ;
+ lv2:scalePoint [
+ rdfs:label "Falling Saw" ;
+ rdf:value -1.0
+ ] , [
+ rdfs:label "Triangle" ;
+ rdf:value 0.0
+ ] , [
+ rdfs:label "Rising Saw" ;
+ rdf:value 1.0
+ ]
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:index 7 ;
+ lv2:maximum 10.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Modulation gain" ;
+ lv2:symbol "mod_gain"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 8 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum -1.0 ;
+ lv2:name "Feedback gain" ;
+ lv2:symbol "fb_gain"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 9 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum -1.0 ;
+ lv2:name "Output mix" ;
+ lv2:symbol "out_mix"
+ ] ;
+ rdfs:comment "Similar to CS Phaser 1, but the external modulation has been replaced by a built-in LFO." .
diff --git a/fomp.lv2/manifest.ttl.in b/fomp.lv2/manifest.ttl.in
new file mode 100644
index 0000000..fa8730e
--- /dev/null
+++ b/fomp.lv2/manifest.ttl.in
@@ -0,0 +1,110 @@
+@prefix doap: <http://usefulinc.com/ns/doap#> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
+@prefix fomp: <http://drobilla.net/plugins/fomp/> .
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<http://drobilla.net/drobilla#me>
+ a foaf:Person ;
+ foaf:name "David Robillard" ;
+ foaf:mbox <mailto:d@drobilla.net> ;
+ rdfs:seeAlso <http://drobilla.net/drobilla> .
+
+fomp:
+ a doap:Project ;
+ lv2:symbol "fomp" ;
+ doap:name "Fomp LV2" ;
+ doap:shortdesc "An LV2 port of Fons Adriaensen's modular plugins." ;
+ doap:homepage <http://drobilla.net/software/fomp-lv2> ;
+ doap:license <http://opensource.org/licenses/gpl-2.0> ;
+ doap:maintainer <http://drobilla.net/drobilla#me> ;
+ doap:developer [
+ a foaf:Person ;
+ foaf:name "Fons Adriaensen" ;
+ foaf:mbox <mailto:fons@linuxaudio.org>
+ ] .
+
+fomp:mvclpf1
+ a lv2:Plugin ;
+ rdfs:seeAlso <mvclpf1.ttl> ;
+ lv2:binary <mvclpf24@LIB_EXT@> .
+
+fomp:mvclpf2
+ a lv2:Plugin ;
+ rdfs:seeAlso <mvclpf2.ttl> ;
+ lv2:binary <mvclpf24@LIB_EXT@> .
+
+fomp:mvclpf3
+ a lv2:Plugin ;
+ rdfs:seeAlso <mvclpf3.ttl> ;
+ lv2:binary <mvclpf24@LIB_EXT@> .
+
+fomp:mvclpf4
+ a lv2:Plugin ;
+ rdfs:seeAlso <mvclpf4.ttl> ;
+ lv2:binary <mvclpf24@LIB_EXT@> .
+
+fomp:mvchpf1
+ a lv2:Plugin ;
+ rdfs:seeAlso <mvchpf1.ttl> ;
+ lv2:binary <mvchpf24@LIB_EXT@> .
+
+fomp:cs_chorus1
+ a lv2:Plugin ;
+ rdfs:seeAlso <cs_chorus1.ttl> ;
+ lv2:binary <cs_chorus@LIB_EXT@> .
+
+fomp:cs_chorus2
+ a lv2:Plugin ;
+ rdfs:seeAlso <cs_chorus2.ttl> ;
+ lv2:binary <cs_chorus@LIB_EXT@> .
+
+fomp:cs_phaser1
+ a lv2:Plugin ;
+ rdfs:seeAlso <cs_phaser1.ttl> ;
+ lv2:binary <cs_phaser@LIB_EXT@> .
+
+fomp:cs_phaser1_lfo
+ a lv2:Plugin ;
+ rdfs:seeAlso <cs_phaser1_lfo.ttl> ;
+ lv2:binary <cs_phaser@LIB_EXT@> .
+
+fomp:triple_chorus
+ a lv2:Plugin ;
+ rdfs:seeAlso <triple_chorus.ttl> ;
+ lv2:binary <cs_chorus@LIB_EXT@> .
+
+fomp:pulse_vco
+ a lv2:Plugin ;
+ rdfs:seeAlso <pulse_vco.ttl> ;
+ lv2:binary <blvco@LIB_EXT@> .
+
+fomp:saw_vco
+ a lv2:Plugin ;
+ rdfs:seeAlso <saw_vco.ttl> ;
+ lv2:binary <blvco@LIB_EXT@> .
+
+fomp:rec_vco
+ a lv2:Plugin ;
+ rdfs:seeAlso <rec_vco.ttl> ;
+ lv2:binary <blvco@LIB_EXT@> .
+
+fomp:parametric1
+ a lv2:Plugin ;
+ rdfs:seeAlso <parametric1.ttl> ;
+ lv2:binary <filters@LIB_EXT@> .
+
+fomp:autowah
+ a lv2:Plugin ;
+ rdfs:seeAlso <autowah.ttl> ;
+ lv2:binary <autowah@LIB_EXT@> .
+
+fomp:reverb
+ a lv2:Plugin ;
+ rdfs:seeAlso <reverb.ttl> ;
+ lv2:binary <reverbs@LIB_EXT@> .
+
+fomp:reverb_amb
+ a lv2:Plugin ;
+ rdfs:seeAlso <reverb_amb.ttl> ;
+ lv2:binary <reverbs@LIB_EXT@> .
diff --git a/fomp.lv2/mvchpf1.ttl b/fomp.lv2/mvchpf1.ttl
new file mode 100644
index 0000000..b4a2b13
--- /dev/null
+++ b/fomp.lv2/mvchpf1.ttl
@@ -0,0 +1,82 @@
+@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:mvchpf1
+ a lv2:Plugin ,
+ lv2:HighpassPlugin ;
+ doap:name "Moog High-Pass Filter 1" ;
+ 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:CVPort ,
+ lv2:InputPort ;
+ lv2:index 2 ;
+ lv2:name "FM" ;
+ lv2:symbol "fm" ;
+ units:unit units:oct
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:index 3 ;
+ lv2:name "Exp FM" ;
+ lv2:symbol "exp_fm" ;
+ units:unit units:oct
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 4 ;
+ 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 440.0 ;
+ lv2:index 5 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.000001 ;
+ lv2:name "Frequency" ;
+ lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ,
+ lv2:sampleRate ;
+ lv2:symbol "freq" ;
+ units:unit units:hz
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:index 6 ;
+ lv2:maximum 10.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Exp FM gain" ;
+ lv2:symbol "exp_gm_gain"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 7 ;
+ lv2:maximum 15.0 ;
+ lv2:minimum -15.0 ;
+ lv2:name "Output gain" ;
+ lv2:symbol "out_gain" ;
+ units:unit units:db
+ ] ;
+ rdfs:comment "Based on the voltage controlled highpass filter by Robert Moog, with some attention to the nonlinear effects. This is quite different from the lowpass filters. When you 'overdrive' the filter, the cutoff frequency will rise. This first version is really very experimental." .
diff --git a/fomp.lv2/mvclpf1.ttl b/fomp.lv2/mvclpf1.ttl
new file mode 100644
index 0000000..25d92fe
--- /dev/null
+++ b/fomp.lv2/mvclpf1.ttl
@@ -0,0 +1,104 @@
+@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:mvclpf1
+ a lv2:Plugin ,
+ lv2:LowpassPlugin ;
+ doap:name "Moog Low-Pass Filter 1" ;
+ 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:CVPort ,
+ lv2:InputPort ;
+ lv2:index 2 ;
+ lv2:name "FM" ;
+ lv2:symbol "fm" ;
+ units:unit units:oct
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:index 3 ;
+ lv2:name "Exp FM" ;
+ lv2:symbol "exp_fm" ;
+ units:unit units:oct
+ ] , [
+ 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 440.0 ;
+ lv2:index 6 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.000001 ;
+ lv2:name "Frequency" ;
+ lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ,
+ lv2:sampleRate ;
+ lv2:symbol "freq" ;
+ units:unit units:hz
+ ] , [
+ 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"
+ ] , [
+ 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
+ ] ;
+ rdfs:comment "A fairly simple design which does not even pretend to come close the 'real thing'. It uses a very crude approximation of the non-linear resistor in the first filter section only. Retained in this distribution because it's a cheap (in terms of CPU usage) general purpose 24 dB/oct lowpass filter that could be useful." .
diff --git a/fomp.lv2/mvclpf2.ttl b/fomp.lv2/mvclpf2.ttl
new file mode 100644
index 0000000..a7f5ff0
--- /dev/null
+++ b/fomp.lv2/mvclpf2.ttl
@@ -0,0 +1,104 @@
+@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:mvclpf2
+ a lv2:Plugin ,
+ lv2:LowpassPlugin ;
+ doap:name "Moog Low-Pass Filter 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 "out"
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:index 2 ;
+ lv2:name "FM" ;
+ lv2:symbol "fm" ;
+ units:unit units:oct
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:index 3 ;
+ lv2:name "Exp FM" ;
+ lv2:symbol "exp_fm" ;
+ units:unit units:oct
+ ] , [
+ 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 440.0 ;
+ lv2:index 6 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.000001 ;
+ lv2:name "Frequency" ;
+ lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ,
+ lv2:sampleRate ;
+ lv2:symbol "freq" ;
+ units:unit units:hz
+ ] , [
+ 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"
+ ] , [
+ 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
+ ] ;
+ rdfs:comment "Uses five non-linear elements, in the input and in all four filter sections. It works by using the derivative of the nonlinearity (for which 1 / (1 + x * x) is reasonable approximation). The main advantage of this is that only one evaluation of the non-linear function is required for each section. The four variables that contain the filter state (c1...c4) represent not the voltage on the capacitors (as in the first filter) but the current flowing in the resistive part." .
diff --git a/fomp.lv2/mvclpf3.ttl b/fomp.lv2/mvclpf3.ttl
new file mode 100644
index 0000000..9d6ff60
--- /dev/null
+++ b/fomp.lv2/mvclpf3.ttl
@@ -0,0 +1,104 @@
+@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:CVPort ,
+ lv2:InputPort ;
+ lv2:index 2 ;
+ lv2:name "FM" ;
+ lv2:symbol "fm" ;
+ units:unit units:oct
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:index 3 ;
+ lv2:name "Exp FM" ;
+ lv2:symbol "exp_fm" ;
+ units:unit units:oct
+ ] , [
+ 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 440.0 ;
+ lv2:index 6 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.000001 ;
+ lv2:name "Frequency" ;
+ lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ,
+ lv2:sampleRate ;
+ lv2:symbol "freq" ;
+ units:unit units:hz
+ ] , [
+ 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"
+ ] , [
+ 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
+ ] ;
+ 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." .
diff --git a/fomp.lv2/mvclpf4.ttl b/fomp.lv2/mvclpf4.ttl
new file mode 100644
index 0000000..8c7c9e0
--- /dev/null
+++ b/fomp.lv2/mvclpf4.ttl
@@ -0,0 +1,120 @@
+@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:mvclpf4
+ a lv2:Plugin ,
+ lv2:LowpassPlugin ;
+ doap:name "Moog Low-Pass Filter 4" ;
+ 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:CVPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 2 ;
+ lv2:name "FM" ;
+ lv2:symbol "fm" ;
+ units:unit units:oct
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 3 ;
+ lv2:name "Exp FM" ;
+ lv2:symbol "exp_fm" ;
+ units:unit units:oct
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ 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 440.0 ;
+ lv2:index 6 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.000001 ;
+ lv2:name "Frequency" ;
+ lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ,
+ lv2:sampleRate ;
+ lv2:symbol "freq" ;
+ units:unit units:hz
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ 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:default 0.0 ;
+ lv2:index 8 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Resonance" ;
+ lv2:symbol "res"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 9 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Resonance gain" ;
+ lv2:symbol "res_gain"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 10 ;
+ lv2:maximum 4.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Filter poles" ;
+ lv2:portProperty lv2:integer ;
+ lv2:symbol "poles"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 11 ;
+ lv2:maximum 15.0 ;
+ lv2:minimum -15.0 ;
+ lv2:name "Output gain" ;
+ lv2:symbol "out_gain" ;
+ units:unit units:db
+ ] ;
+ rdfs:comment "The same as variant 3, but adds a selection of 0, 6, 12, 18 or 24 db/oct output." .
diff --git a/fomp.lv2/parametric1.ttl b/fomp.lv2/parametric1.ttl
new file mode 100644
index 0000000..545c03d
--- /dev/null
+++ b/fomp.lv2/parametric1.ttl
@@ -0,0 +1,196 @@
+@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: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 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"
+ ] .
diff --git a/fomp.lv2/pulse_vco.ttl b/fomp.lv2/pulse_vco.ttl
new file mode 100644
index 0000000..77dd0af
--- /dev/null
+++ b/fomp.lv2/pulse_vco.ttl
@@ -0,0 +1,95 @@
+@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:pulse_vco
+ a lv2:Plugin ,
+ lv2:OscillatorPlugin ;
+ doap:name "Pulse VCO" ;
+ lv2:microVersion 0 ;
+ lv2:minorVersion 0 ;
+ lv2:optionalFeature lv2:hardRTCapable ;
+ lv2:project fomp: ;
+ lv2:port [
+ a lv2:AudioPort ,
+ lv2:OutputPort ;
+ lv2:index 0 ;
+ lv2:name "Output" ;
+ lv2:symbol "out"
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:default 440.0 ;
+ lv2:index 1 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.000001 ;
+ lv2:name "Frequency" ;
+ lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ,
+ lv2:sampleRate ;
+ lv2:symbol "freq" ;
+ units:unit units:hz
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:index 2 ;
+ lv2:name "Exp FM" ;
+ lv2:symbol "exp_fm" ;
+ units:unit units:oct
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:index 3 ;
+ lv2:name "Lin FM" ;
+ lv2:symbol "lin_fm"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 4 ;
+ lv2:maximum 4.0 ;
+ lv2:minimum -4.0 ;
+ lv2:name "Octave" ;
+ lv2:portProperty lv2:integer ;
+ lv2:symbol "octave"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 5 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Tune" ;
+ lv2:symbol "tune"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 6 ;
+ lv2:maximum 4.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Exp FM gain" ;
+ lv2:symbol "exp_fm_gain"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 7 ;
+ lv2:maximum 4.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Lin FM gain" ;
+ lv2:symbol "lin_fm_gain"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 1.0 ;
+ lv2:index 8 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "LP filter" ;
+ lv2:symbol "lp_filter"
+ ] ;
+ rdfs:comment """Based on the principle of using a precomputed interpolated dirac pulse. This is the pulse variant (flat amplitude spectrum).
+
+Aliases should be below -80dB for fundamental frequencies below the sample rate / 6 (i.e. up to 8 kHz at Fsamp = 48 kHz). This frequency range includes the fundamental frequencies of all known musical instruments.""" .
diff --git a/fomp.lv2/rec_vco.ttl b/fomp.lv2/rec_vco.ttl
new file mode 100644
index 0000000..2d99e11
--- /dev/null
+++ b/fomp.lv2/rec_vco.ttl
@@ -0,0 +1,127 @@
+@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:rec_vco
+ a lv2:Plugin ,
+ lv2:OscillatorPlugin ;
+ doap:name "Rec VCO" ;
+ lv2:microVersion 0 ;
+ lv2:minorVersion 0 ;
+ lv2:optionalFeature lv2:hardRTCapable ;
+ lv2:project fomp: ;
+ lv2:port [
+ a lv2:AudioPort ,
+ lv2:OutputPort ;
+ lv2:index 0 ;
+ lv2:name "Output" ;
+ lv2:symbol "out"
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:default 440.0 ;
+ lv2:index 1 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.000001 ;
+ lv2:name "Frequency" ;
+ lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ,
+ lv2:sampleRate ;
+ lv2:symbol "freq" ;
+ units:unit units:hz
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 10 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum -1.0 ;
+ lv2:name "Waveform" ;
+ lv2:symbol "waveform"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 11 ;
+ lv2:maximum 4.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Form mod" ;
+ lv2:symbol "form_mod"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 1.0 ;
+ lv2:index 12 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "LP filter" ;
+ lv2:symbol "lp_filrer"
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:index 2 ;
+ lv2:name "Exp FM" ;
+ lv2:symbol "exp_fm" ;
+ units:unit units:oct
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:index 3 ;
+ lv2:name "Lin FM" ;
+ lv2:symbol "lin_fm"
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:index 4 ;
+ lv2:name "Mod" ;
+ lv2:symbol "mod"
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:index 5 ;
+ lv2:name "Sync" ;
+ lv2:symbol "sync"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 6 ;
+ lv2:maximum 4.0 ;
+ lv2:minimum -4.0 ;
+ lv2:name "Octave" ;
+ lv2:portProperty lv2:integer ;
+ lv2:symbol "octave"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 7 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Tune" ;
+ lv2:symbol "tune"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 8 ;
+ lv2:maximum 4.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Exp FM gain" ;
+ lv2:symbol "exp_fm_gain"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 9 ;
+ lv2:maximum 4.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Lin FM gain" ;
+ lv2:symbol "lin_fm_gain"
+ ] ;
+ rdfs:comment """Based on the principle of using a precomputed interpolated dirac pulse. The 'edge' for this rectangular variant is made by integrating the anti-aliased pulse.
+
+Aliases should be below -80dB for fundamental frequencies below the sample rate / 6 (i.e. up to 8 kHz at Fsamp = 48 kHz). This frequency range includes the fundamental frequencies of all known musical instruments.
+
+Tests by Matthias Nagorni revealed the output sounded quite 'harsh' when compared to his analogue instruments. Comparing the spectra, it became clear that a mathematically 'exact' spectrum was not desirable from a musical point of view. For this reason, a built-in lowpass filter was added. The default setting (0.5) will yield output identical to that of the Moog Voyager.""" .
diff --git a/fomp.lv2/reverb.ttl b/fomp.lv2/reverb.ttl
new file mode 100644
index 0000000..c7af965
--- /dev/null
+++ b/fomp.lv2/reverb.ttl
@@ -0,0 +1,137 @@
+@prefix doap: <http://usefulinc.com/ns/doap#> .
+@prefix fomp: <http://drobilla.net/plugins/fomp/> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+fomp:reverb
+ a lv2:Plugin ,
+ lv2:ReverbPlugin ;
+ doap:name "reverb" ;
+ lv2:microVersion 0 ;
+ lv2:minorVersion 0 ;
+ lv2:optionalFeature lv2:hardRTCapable ;
+ lv2:requiredFeature lv2:isLive ;
+ lv2:project fomp: ;
+ lv2:port [
+ a lv2:AudioPort ,
+ lv2:InputPort ;
+ lv2:index 0 ;
+ lv2:name "In L" ;
+ lv2:symbol "in_l"
+ ] , [
+ a lv2:AudioPort ,
+ lv2:InputPort ;
+ lv2:index 1 ;
+ lv2:name "In R" ;
+ lv2:symbol "in_r"
+ ] , [
+ a lv2:AudioPort ,
+ lv2:OutputPort ;
+ lv2:index 2 ;
+ lv2:name "Out L" ;
+ lv2:symbol "out_l"
+ ] , [
+ a lv2:AudioPort ,
+ lv2:OutputPort ;
+ lv2:index 3 ;
+ lv2:name "Out R" ;
+ lv2:symbol "out_r"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.06 ;
+ lv2:index 4 ;
+ lv2:maximum 0.1 ;
+ lv2:minimum 0.02 ;
+ lv2:name "Delay" ;
+ lv2:symbol "delay"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 223.607 ;
+ lv2:index 5 ;
+ lv2:maximum 1000 ;
+ lv2:minimum 50 ;
+ lv2:name "Xover" ;
+ lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ;
+ lv2:symbol "xover"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 2.75 ;
+ lv2:index 6 ;
+ lv2:maximum 8 ;
+ lv2:minimum 1 ;
+ lv2:name "RT-low" ;
+ lv2:symbol "rt_low"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 2.75 ;
+ lv2:index 7 ;
+ lv2:maximum 8 ;
+ lv2:minimum 1 ;
+ lv2:name "RT-mid" ;
+ lv2:symbol "rt_mid"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 6000 ;
+ lv2:index 8 ;
+ lv2:maximum 24000 ;
+ lv2:minimum 1500 ;
+ lv2:name "Damping" ;
+ lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ;
+ lv2:symbol "damping"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 159.054 ;
+ lv2:index 9 ;
+ lv2:maximum 10000 ;
+ lv2:minimum 40 ;
+ lv2:name "F1-freq" ;
+ lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ;
+ lv2:symbol "f1_freq"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0 ;
+ lv2:index 10 ;
+ lv2:maximum 20 ;
+ lv2:minimum -20 ;
+ lv2:name "F1-gain" ;
+ lv2:symbol "f1_gain"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 2514.87 ;
+ lv2:index 11 ;
+ lv2:maximum 10000 ;
+ lv2:minimum 40 ;
+ lv2:name "F2-freq" ;
+ lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ;
+ lv2:symbol "f2_freq"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0 ;
+ lv2:index 12 ;
+ lv2:maximum 20 ;
+ lv2:minimum -20 ;
+ lv2:name "F2-gain" ;
+ lv2:symbol "f2_gain"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.5 ;
+ lv2:index 13 ;
+ lv2:maximum 1 ;
+ lv2:minimum 0 ;
+ lv2:name "Output mix" ;
+ lv2:symbol "out_mix"
+ ] .
diff --git a/fomp.lv2/reverb_amb.ttl b/fomp.lv2/reverb_amb.ttl
new file mode 100644
index 0000000..3df491f
--- /dev/null
+++ b/fomp.lv2/reverb_amb.ttl
@@ -0,0 +1,149 @@
+@prefix doap: <http://usefulinc.com/ns/doap#> .
+@prefix fomp: <http://drobilla.net/plugins/fomp/> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+fomp:reverb_amb
+ a lv2:Plugin ,
+ lv2:ReverbPlugin ;
+ doap:name "reverb-amb" ;
+ lv2:microVersion 0 ;
+ lv2:minorVersion 0 ;
+ lv2:optionalFeature lv2:hardRTCapable ;
+ lv2:requiredFeature lv2:isLive ;
+ lv2:project fomp: ;
+ lv2:port [
+ a lv2:AudioPort ,
+ lv2:InputPort ;
+ lv2:index 0 ;
+ lv2:name "In L" ;
+ lv2:symbol "in_l"
+ ] , [
+ a lv2:AudioPort ,
+ lv2:InputPort ;
+ lv2:index 1 ;
+ lv2:name "In R" ;
+ lv2:symbol "in_r"
+ ] , [
+ a lv2:AudioPort ,
+ lv2:OutputPort ;
+ lv2:index 2 ;
+ lv2:name "Out W" ;
+ lv2:symbol "out_w"
+ ] , [
+ a lv2:AudioPort ,
+ lv2:OutputPort ;
+ lv2:index 3 ;
+ lv2:name "Out X" ;
+ lv2:symbol "out_x"
+ ] , [
+ a lv2:AudioPort ,
+ lv2:OutputPort ;
+ lv2:index 4 ;
+ lv2:name "Out Y" ;
+ lv2:symbol "out_y"
+ ] , [
+ a lv2:AudioPort ,
+ lv2:OutputPort ;
+ lv2:index 5 ;
+ lv2:name "Out Z" ;
+ lv2:symbol "out_z"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.06 ;
+ lv2:index 6 ;
+ lv2:maximum 0.1 ;
+ lv2:minimum 0.02 ;
+ lv2:name "Delay" ;
+ lv2:symbol "delay"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 223.607 ;
+ lv2:index 7 ;
+ lv2:maximum 1000 ;
+ lv2:minimum 50 ;
+ lv2:name "Xover" ;
+ lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ;
+ lv2:symbol "xover"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 2.75 ;
+ lv2:index 8 ;
+ lv2:maximum 8 ;
+ lv2:minimum 1 ;
+ lv2:name "RT-low" ;
+ lv2:symbol "rt_low"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 2.75 ;
+ lv2:index 9 ;
+ lv2:maximum 8 ;
+ lv2:minimum 1 ;
+ lv2:name "RT-mid" ;
+ lv2:symbol "rt_mid"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 6000 ;
+ lv2:index 10 ;
+ lv2:maximum 24000 ;
+ lv2:minimum 1500 ;
+ lv2:name "Damping" ;
+ lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ;
+ lv2:symbol "damping"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 159.054 ;
+ lv2:index 11 ;
+ lv2:maximum 10000 ;
+ lv2:minimum 40 ;
+ lv2:name "F1-freq" ;
+ lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ;
+ lv2:symbol "fw_freq"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0 ;
+ lv2:index 12 ;
+ lv2:maximum 20 ;
+ lv2:minimum -20 ;
+ lv2:name "F1-gain" ;
+ lv2:symbol "fw_gain"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 2514.87 ;
+ lv2:index 13 ;
+ lv2:maximum 10000 ;
+ lv2:minimum 40 ;
+ lv2:name "F2-freq" ;
+ lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ;
+ lv2:symbol "f2_freq"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0 ;
+ lv2:index 14 ;
+ lv2:maximum 20 ;
+ lv2:minimum -20 ;
+ lv2:name "F2-gain" ;
+ lv2:symbol "f2_gain"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0 ;
+ lv2:index 15 ;
+ lv2:maximum 9 ;
+ lv2:minimum -9 ;
+ lv2:name "XYZ gain" ;
+ lv2:symbol "xyz_gain"
+ ] .
diff --git a/fomp.lv2/saw_vco.ttl b/fomp.lv2/saw_vco.ttl
new file mode 100644
index 0000000..7fbde9b
--- /dev/null
+++ b/fomp.lv2/saw_vco.ttl
@@ -0,0 +1,103 @@
+@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:saw_vco
+ a lv2:Plugin ,
+ lv2:OscillatorPlugin ;
+ doap:name "Saw VCO" ;
+ lv2:microVersion 0 ;
+ lv2:minorVersion 0 ;
+ lv2:optionalFeature lv2:hardRTCapable ;
+ lv2:project fomp: ;
+ lv2:port [
+ a lv2:AudioPort ,
+ lv2:OutputPort ;
+ lv2:index 0 ;
+ lv2:name "Output" ;
+ lv2:symbol "out"
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:default 440.0 ;
+ lv2:index 1 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.000001 ;
+ lv2:name "Frequency" ;
+ lv2:portProperty <http://lv2plug.in/ns/ext/port-props#logarithmic> ,
+ lv2:sampleRate ;
+ lv2:symbol "freq" ;
+ units:unit units:hz
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:index 2 ;
+ lv2:name "Exp FM" ;
+ lv2:symbol "exp_fm" ;
+ units:unit units:oct
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:index 3 ;
+ lv2:name "Lin FM" ;
+ lv2:symbol "lin_fm"
+ ] , [
+ a lv2:CVPort ,
+ lv2:InputPort ;
+ lv2:index 4 ;
+ lv2:name "Sync" ;
+ lv2:symbol "sync"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 5 ;
+ lv2:maximum 4.0 ;
+ lv2:minimum -4.0 ;
+ lv2:name "Octave" ;
+ lv2:portProperty lv2:integer ;
+ lv2:symbol "octave"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 6 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Tune" ;
+ lv2:symbol "tune"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 7 ;
+ lv2:maximum 4.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Exp FM gain" ;
+ lv2:symbol "exp_fm_gain"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 0.0 ;
+ lv2:index 8 ;
+ lv2:maximum 4.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "Lin FM gain" ;
+ lv2:symbol "lin_fm_gain"
+ ] , [
+ a lv2:ControlPort ,
+ lv2:InputPort ;
+ lv2:default 1.0 ;
+ lv2:index 9 ;
+ lv2:maximum 1.0 ;
+ lv2:minimum 0.0 ;
+ lv2:name "LP filter" ;
+ lv2:symbol "lp_filter"
+ ] ;
+ rdfs:comment """Based on the principle of using a precomputed interpolated dirac pulse. The 'edge' for this saw variant (1/F amplitude spectrum) is made by integrating the anti-aliased pulse.
+
+Aliases should be below -80dB for fundamental frequencies below the sample rate / 6 (i.e. up to 8 kHz at Fsamp = 48 kHz). This frequency range includes the fundamental frequencies of all known musical instruments.
+
+Tests by Matthias Nagorni revealed the output sounded quite 'harsh' when compared to his analogue instruments. Comparing the spectra, it became clear that a mathematically 'exact' spectrum was not desirable from a musical point of view. For this reason, a built-in lowpass filter was added. The default setting (0.5) will yield output identical to that of the Moog Voyager.""" .
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." .