-
Notifications
You must be signed in to change notification settings - Fork 1
/
midi-display.ttl
70 lines (66 loc) · 2.4 KB
/
midi-display.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
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix midi: <http://lv2plug.in/ns/ext/midi#> .
@prefix mod: <http://moddevices.com/ns/mod#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
<https://github.com/vallsv/midi-display.lv2>
a mod:MIDIPlugin ,
lv2:UtilityPlugin ,
lv2:Plugin ;
doap:name "MIDI display" ;
doap:license "GPLv3+" ;
rdfs:comment """MIDI display.""" ;
lv2:minorVersion 1 ;
lv2:microVersion 0 ;
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:OutputPort , lv2:ControlPort ;
lv2:index 1 ;
lv2:symbol "midi_received" ;
lv2:name "MIDI received" ;
lv2:default 0 ;
lv2:minimum 0 ;
lv2:maximum 1 ;
lv2:portProperty lv2:integer , lv2:trigger ;
] , [
a lv2:OutputPort , lv2:ControlPort ;
lv2:index 2 ;
lv2:symbol "midi_msg_1" ;
lv2:name "MIDI message 1" ;
lv2:default -1 ;
lv2:minimum -1 ;
lv2:maximum 255 ;
lv2:portProperty lv2:integer ;
] , [
a lv2:OutputPort , lv2:ControlPort ;
lv2:index 3 ;
lv2:symbol "midi_msg_2" ;
lv2:name "MIDI message 2" ;
lv2:default -1 ;
lv2:minimum -1 ;
lv2:maximum 255 ;
lv2:portProperty lv2:integer ;
] , [
a lv2:OutputPort , lv2:ControlPort ;
lv2:index 4 ;
lv2:symbol "midi_msg_3" ;
lv2:name "MIDI message 3" ;
lv2:default -1 ;
lv2:minimum -1 ;
lv2:maximum 255 ;
lv2:portProperty lv2:integer ;
] ;
doap:developer [
foaf:name "V_V" ;
] ;
mod:label "MIDI display" .