diff options
Diffstat (limited to 'blop.lv2/interpolator.ttl')
-rw-r--r-- | blop.lv2/interpolator.ttl | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/blop.lv2/interpolator.ttl b/blop.lv2/interpolator.ttl new file mode 100644 index 0000000..38c93db --- /dev/null +++ b/blop.lv2/interpolator.ttl @@ -0,0 +1,32 @@ +@prefix blop: <http://drobilla.net/plugins/blop/> . +@prefix dct: <http://purl.org/dc/terms/> . +@prefix doap: <http://usefulinc.com/ns/doap#> . +@prefix lv2: <http://lv2plug.in/ns/lv2core#> . + +blop:interpolator + a lv2:Plugin , + lv2:UtilityPlugin ; + lv2:project blop: ; + lv2:symbol "interpolator" ; + lv2:microVersion 0 ; + lv2:minorVersion 0 ; + lv2:optionalFeature lv2:hardRTCapable ; + lv2:port [ + a lv2:ControlPort , + lv2:InputPort ; + lv2:index 0 ; + lv2:name "Control Input" ; + lv2:symbol "in" + ] , [ + a lv2:CVPort , + lv2:OutputPort ; + lv2:index 1 ; + lv2:name "Interpolated Output" ; + lv2:symbol "out" + ] ; + dct:replaces <urn:ladspa:1660> ; + doap:name "Control to CV Interpolator" ; + lv2:documentation """ +<p>Interpolates a control-rate (per-block) signal into a smooth audio-rate +(per-sample) signal.</p> +""" . |