-
Notifications
You must be signed in to change notification settings - Fork 0
/
vopamo.ttl
36 lines (34 loc) · 1007 Bytes
/
vopamo.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
@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:VoPaMo>
a lv2:Plugin ;
doap:name "VoPa Mono" ;
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 "output" ;
lv2:name "Output" ;
], [
a lv2:InputPort ,
lv2:AudioPort ;
lv2:index 1 ;
lv2:symbol "input" ;
lv2:name "Input" ;
], [
a lv2:InputPort ,
atom:AtomPort ;
atom:bufferType atom:Sequence ;
atom:supports midi:MidiEvent ;
lv2:designation lv2:control ;
lv2:index 2 ;
lv2:symbol "midi_input" ;
lv2:name "MIDI Input" ;
] .