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/pulse_vco.ttl | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 fomp.lv2/pulse_vco.ttl (limited to 'fomp.lv2/pulse_vco.ttl') diff --git a/fomp.lv2/pulse_vco.ttl b/fomp.lv2/pulse_vco.ttl new file mode 100644 index 0000000..c1a2048 --- /dev/null +++ b/fomp.lv2/pulse_vco.ttl @@ -0,0 +1,89 @@ +@prefix doap: . +@prefix fomp: . +@prefix lv2: . +@prefix rdfs: . +@prefix units: . + +fomp:pulse_vco + a lv2:Plugin , + lv2:OscillatorPlugin ; + doap:name "Pulse VCO" ; + lv2:binary ; + 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:index 1 ; + lv2:name "Frequency" ; + lv2:symbol "freq" + ] , [ + a lv2:CVPort , + lv2:InputPort ; + lv2:index 2 ; + lv2:name "Exp FM" ; + lv2:symbol "exp_fm" + ] , [ + 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.""" . -- cgit v1.2.1