-
Notifications
You must be signed in to change notification settings - Fork 0
/
vopast.ttl
48 lines (46 loc) · 1.26 KB
/
vopast.ttl
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
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix midi: <http://lv2plug.in/ns/ext/midi#> .
@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
<https://github.com/ycollet/vopa:VoPaSt>
a lv2:Plugin ;
doap:name "VoPa Stereo" ;
doap:license <http://usefulinc.com/doap/licenses/gpl> ;
lv2:requiredFeature urid:map ;
lv2:optionalFeature lv2:hardRTCapable ;
lv2:port [
a lv2:OutputPort ,
lv2:AudioPort ;
lv2:index 0 ;
lv2:symbol "left_output" ;
lv2:name "Left Output" ;
], [
a lv2:OutputPort ,
lv2:AudioPort ;
lv2:index 1 ;
lv2:symbol "right_output" ;
lv2:name "Right Output" ;
], [
a lv2:InputPort ,
lv2:AudioPort ;
lv2:index 2 ;
lv2:symbol "left_input" ;
lv2:name "Left Input" ;
], [
a lv2:InputPort ,
lv2:AudioPort ;
lv2:index 3 ;
lv2:symbol "right_input" ;
lv2:name "Right Input" ;
], [
a lv2:InputPort ,
atom:AtomPort ;
atom:bufferType atom:Sequence ;
atom:supports midi:MidiEvent ;
lv2:designation lv2:control ;
lv2:index 4 ;
lv2:symbol "midi_input" ;
lv2:name "MIDI Input" ;
] .