/usr/lib/lv2/mda.lv2/RoundPan.ttl is in mda-lv2 1.2.2~dfsg0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | @prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix mda: <http://drobilla.net/plugins/mda/> .
@prefix pg: <http://lv2plug.in/ns/ext/port-groups#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
mda:RoundPan
a lv2:Plugin ,
lv2:SpatialPlugin ;
lv2:project mda: ;
lv2:symbol "RoundPan" ;
doap:name "MDA RoundPan" ;
doap:shortdesc "3D panner" ;
doap:license <http://usefulinc.com/doap/licenses/gpl> ;
lv2:optionalFeature lv2:hardRTCapable ;
pg:mainInput mda:mainIn ;
pg:mainOutput mda: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 mda:mainIn
] , [
a lv2:InputPort ,
lv2:AudioPort ;
lv2:index 3 ;
lv2:symbol "right_in" ;
lv2:name "Right In" ;
lv2:designation pg:right ;
pg:group mda:mainIn
] , [
a lv2:OutputPort ,
lv2:AudioPort ;
lv2:index 4 ;
lv2:symbol "left_out" ;
lv2:name "Left Out" ;
lv2:designation pg:left ;
pg:group mda:mainOut
] , [
a lv2:OutputPort ,
lv2:AudioPort ;
lv2:index 5 ;
lv2:symbol "right_out" ;
lv2:name "Right Out" ;
lv2:designation pg:right ;
pg:group mda:mainOut
] .
|