diff options
Diffstat (limited to 'matriseq.ttl')
-rw-r--r-- | matriseq.ttl | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/matriseq.ttl b/matriseq.ttl index a1c5dd8..a39b2df 100644 --- a/matriseq.ttl +++ b/matriseq.ttl @@ -5,6 +5,7 @@ @prefix midi: <http://lv2plug.in/ns/ext/midi#> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix rsz: <http://lv2plug.in/ns/ext/resize-port#> . @prefix time: <http://lv2plug.in/ns/ext/time#> . <http://drobilla.net/drobilla#me> @@ -24,16 +25,26 @@ a lv2:InputPort , atom:AtomPort ; atom:bufferType atom:Sequence ; - atom:supports time:Position ; + atom:supports time:Position, midi:MidiEvent ; lv2:index 0 ; - lv2:symbol "in" ; - lv2:name "In" + lv2:symbol "control_in" ; + lv2:name "Control In" ] , [ a lv2:OutputPort , atom:AtomPort ; atom:bufferType atom:Sequence ; atom:supports midi:MidiEvent ; + rsz:minimumSize 4096 ; lv2:index 1 ; - lv2:symbol "out" ; - lv2:name "Out" + lv2:symbol "control_out" ; + lv2:name "Control Out" ; + ] , [ + a lv2:OutputPort , + atom:AtomPort ; + atom:bufferType atom:Sequence ; + atom:supports midi:MidiEvent ; + rsz:minimumSize 4096 ; + lv2:index 2 ; + lv2:symbol "playback" ; + lv2:name "Playback" ] . |