diff options
author | David Robillard <d@drobilla.net> | 2012-03-28 04:27:34 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-03-28 04:27:34 +0000 |
commit | b9b04f3e6f3930cdebef7339b1162b3c4235469f (patch) | |
tree | fba564a07e9c736c803d63007d3eba9896ef7170 /mdala.lv2/RoundPan.ttl | |
parent | bf7cde64866d735224a920e43f1e1c136c4895c0 (diff) | |
download | mda.lv2-b9b04f3e6f3930cdebef7339b1162b3c4235469f.tar.gz mda.lv2-b9b04f3e6f3930cdebef7339b1162b3c4235469f.tar.bz2 mda.lv2-b9b04f3e6f3930cdebef7339b1162b3c4235469f.zip |
Mdala => MDA.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/mda.lv2@4125 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'mdala.lv2/RoundPan.ttl')
-rw-r--r-- | mdala.lv2/RoundPan.ttl | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/mdala.lv2/RoundPan.ttl b/mdala.lv2/RoundPan.ttl deleted file mode 100644 index c8210d3..0000000 --- a/mdala.lv2/RoundPan.ttl +++ /dev/null @@ -1,70 +0,0 @@ -@prefix doap: <http://usefulinc.com/ns/doap#> . -@prefix lv2: <http://lv2plug.in/ns/lv2core#> . -@prefix mdala: <http://drobilla.net/plugins/mdala/> . -@prefix pg: <http://lv2plug.in/ns/ext/port-groups#> . -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . - -mdala:RoundPan - a lv2:Plugin , - lv2:SpatialPlugin ; - lv2:symbol "RoundPan" ; - doap:name "Mdala RoundPan" ; - doap:shortdesc "3D panner" ; - doap:license <http://usefulinc.com/doap/licenses/gpl> ; - lv2:pluginProperty lv2:hardRTCapable ; - pg:mainInput mdala:mainIn ; - pg:mainOutput mdala:mainOut ; - rdfs:comment "Like all 3D processes the result depends on where you sit relative to the speakers, and mono compatibility is not guaranteed. This plug-in must be used in a stereo channel or bus!" ; - lv2:port [ - a lv2:InputPort , - lv2:ControlPort ; - lv2:index 0 ; - lv2:name "Pan" ; - lv2:symbol "pan" ; - lv2:default 0.5 ; - lv2:minimum 0.0 ; - lv2:maximum 1.0 ; - rdfs:comment "Fixed pan position (when Auto = 0)" - ] , [ - a lv2:InputPort , - lv2:ControlPort ; - lv2:index 1 ; - lv2:name "Auto" ; - lv2:symbol "auto" ; - lv2:default 0.8 ; - lv2:minimum 0.0 ; - lv2:maximum 1.0 ; - rdfs:comment "Autopan rate (turn to left for anticlockwise, right for clockwise)" - ] , [ - a lv2:InputPort , - lv2:AudioPort ; - lv2:index 2 ; - lv2:symbol "left_in" ; - lv2:name "Left In" ; - lv2:designation pg:left ; - pg:group mdala:mainIn - ] , [ - a lv2:InputPort , - lv2:AudioPort ; - lv2:index 3 ; - lv2:symbol "right_in" ; - lv2:name "Right In" ; - lv2:designation pg:right ; - pg:group mdala:mainIn - ] , [ - a lv2:OutputPort , - lv2:AudioPort ; - lv2:index 4 ; - lv2:symbol "left_out" ; - lv2:name "Left Out" ; - lv2:designation pg:left ; - pg:group mdala:mainOut - ] , [ - a lv2:OutputPort , - lv2:AudioPort ; - lv2:index 5 ; - lv2:symbol "right_out" ; - lv2:name "Right Out" ; - lv2:designation pg:right ; - pg:group mdala:mainOut - ] . |