-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmidilooper.ttl
74 lines (71 loc) · 2.28 KB
/
midilooper.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix midi: <http://lv2plug.in/ns/ext/midi#> .
@prefix time: <http://lv2plug.in/ns/ext/time#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
@prefix param: <http://lv2plug.in/ns/ext/parameters#> .
@prefix patch: <http://lv2plug.in/ns/ext/patch#> .
@prefix state: <http://lv2plug.in/ns/ext/state#> .
@prefix plug: <http://momomentum.de/midilooper#> .
plug:rec
a lv2:Parameter ;
rdfs:label "bool" ;
rdfs:range atom:Bool ;
lv2:default 0 .
<http://momomentum.de/mmg#me>
a foaf:Person ;
foaf:name "Moritz Mueller-Guthof" ;
foaf:mbox <mailto:[email protected]> ;
foaf:homepage <http://momomentum.de> .
<http://momomentum.de/midilooper>
a lv2:Plugin, lv2:MIDIPlugin, doap:Project ;
doap:license <http://opensource.org/licenses/mit> ;
doap:maintainer <http://momomentum.de/mmg#me> ;
doap:name "Midi Looper" ;
lv2:minorVersion 0 ;
lv2:microVersion 0 ;
lv2:project <http://lv2plug.in/ns/lv2> ;
lv2:requiredFeature urid:map ;
lv2:optionalFeature lv2:hardRTCapable ;
lv2:port [
a lv2:InputPort ,
atom:AtomPort ;
atom:bufferType atom:Sequence ;
atom:supports midi:MidiEvent ;
lv2:index 0 ;
lv2:symbol "in" ;
lv2:name "In"
] , [
a lv2:InputPort ,
atom:AtomPort ;
atom:bufferType atom:Sequence ;
atom:supports time:Position;
lv2:index 1 ;
lv2:symbol "control" ;
lv2:name "control"
] , [
a lv2:OutputPort ,
atom:AtomPort ;
atom:bufferType atom:Sequence ;
atom:supports midi:MidiEvent ;
lv2:index 2 ;
lv2:symbol "out" ;
lv2:name "Out"
] , [
a lv2:InputPort ,
atom:AtomPort ;
atom:bufferType atom:Sequence ;
atom:supports patch:Message ;
atom:supports atom:Object ;
lv2:index 3 ;
lv2:symbol "param_in" ;
lv2:name "Parameter In"
] ;
patch:writable plug:rec ;
# patch:readable plug:rec ;
state:state [
plug:rec false ;
] .