This commit is contained in:
2026-04-20 13:19:15 +03:00
parent 1cc59d5408
commit ad8910ea19
9 changed files with 1333 additions and 449 deletions

View File

@@ -1,4 +1,7 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix atom: <http://lv2plug.in/ns/ext/atom#> .
@prefix midi: <http://lv2plug.in/ns/ext/midi#> .
@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@@ -6,16 +9,24 @@
a lv2:Plugin, lv2:InstrumentPlugin ;
doap:name "Tenko" ;
doap:license <https://spdx.org/licenses/MIT> ;
lv2:requiredFeature urid:map ;
lv2:port [
a lv2:InputPort, atom:AtomPort ;
lv2:index 0 ;
lv2:symbol "midi_in" ;
rdfs:label "MIDI In" ;
atom:bufferType atom:Sequence ;
atom:supports midi:MidiEvent
] , [
a lv2:OutputPort, lv2:AudioPort ;
lv2:index 0 ;
lv2:index 1 ;
lv2:symbol "out_l" ;
rdfs:label "Left Out"
] , [
a lv2:OutputPort, lv2:AudioPort ;
lv2:index 1 ;
lv2:index 2 ;
lv2:symbol "out_r" ;
rdfs:label "Right Out"
] .