|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- @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 opts: <http://lv2plug.in/ns/ext/options#> .
- @prefix patch: <http://lv2plug.in/ns/ext/patch#> .
-
- <http://kxstudio.sf.net/carla/plugins/midifile>
- a lv2:UtilityPlugin, lv2:Plugin ;
-
- lv2:optionalFeature <http://lv2plug.in/ns/lv2core#hardRTCapable> ;
- lv2:optionalFeature <http://lv2plug.in/ns/ext/state#threadSafeRestore> ;
-
- lv2:requiredFeature <http://lv2plug.in/ns/ext/buf-size#boundedBlockLength> ,
- <http://lv2plug.in/ns/ext/options#options> ,
- <http://lv2plug.in/ns/ext/urid#map> ;
-
- lv2:extensionData <http://lv2plug.in/ns/ext/options#interface> ;
- lv2:extensionData <http://lv2plug.in/ns/ext/state#interface> ;
- lv2:extensionData <http://kxstudio.sf.net/ns/lv2ext/programs#Interface> ;
- lv2:extensionData <http://lv2plug.in/ns/ext/worker#interface> ;
-
- opts:supportedOption <http://lv2plug.in/ns/ext/buf-size#nominalBlockLength> ,
- <http://lv2plug.in/ns/ext/buf-size#maxBlockLength> ,
- <http://lv2plug.in/ns/ext/parameters#sampleRate> ;
-
- lv2:port [
- a lv2:InputPort, atom:AtomPort ;
- atom:bufferType atom:Sequence ;
- atom:supports <http://lv2plug.in/ns/ext/time#Position> ;
- atom:supports <http://lv2plug.in/ns/ext/patch#Message> ;
- lv2:designation lv2:control ;
- lv2:index 0 ;
- lv2:symbol "lv2_events_in" ;
- lv2:name "Events Input" ;
- ] ;
-
- patch:writable <http://kxstudio.sf.net/carla/file/midi> ;
-
- lv2:port [
- a lv2:OutputPort, atom:AtomPort ;
- atom:bufferType atom:Sequence ;
- atom:supports <http://lv2plug.in/ns/ext/midi#MidiEvent> ;
- atom:supports <http://lv2plug.in/ns/ext/patch#Message> ;
- lv2:index 1 ;
- lv2:symbol "lv2_events_out" ;
- lv2:name "Events Output" ;
- ] ;
-
- lv2:port [
- a lv2:InputPort, lv2:ControlPort ;
- lv2:index 2 ;
- lv2:symbol "lv2_freewheel" ;
- lv2:name "Freewheel" ;
- lv2:default 0.0 ;
- lv2:minimum 0.0 ;
- lv2:maximum 1.0 ;
- lv2:designation <http://lv2plug.in/ns/lv2core#freeWheeling> ;
- lv2:portProperty lv2:toggled, <http://lv2plug.in/ns/ext/port-props#notOnGUI> ;
- ] ;
-
- lv2:port [
- a lv2:InputPort, lv2:ControlPort ;
- lv2:index 3 ;
- lv2:symbol "repeat_mode" ;
- lv2:name "Repeat Mode" ;
- lv2:default 0.000000 ;
- lv2:minimum 0.000000 ;
- lv2:maximum 1.000000 ;
- lv2:portProperty lv2:toggled ;
- ] , [
- a lv2:InputPort, lv2:ControlPort ;
- lv2:index 4 ;
- lv2:symbol "host_sync" ;
- lv2:name "Host Sync" ;
- lv2:default 1.000000 ;
- lv2:minimum 0.000000 ;
- lv2:maximum 1.000000 ;
- lv2:portProperty lv2:toggled ;
- ] , [
- a lv2:InputPort, lv2:ControlPort ;
- lv2:index 5 ;
- lv2:symbol "enabled" ;
- lv2:name "Enabled" ;
- lv2:default 1.000000 ;
- lv2:minimum 0.000000 ;
- lv2:maximum 1.000000 ;
- lv2:portProperty lv2:toggled ;
- ] , [
- a lv2:OutputPort, lv2:ControlPort ;
- lv2:index 6 ;
- lv2:symbol "num_tracks" ;
- lv2:name "Num Tracks" ;
- lv2:minimum 0.000000 ;
- lv2:maximum 256.000000 ;
- lv2:portProperty lv2:integer ;
- ] , [
- a lv2:OutputPort, lv2:ControlPort ;
- lv2:index 7 ;
- lv2:symbol "length" ;
- lv2:name "Length" ;
- lv2:minimum 0.000000 ;
- lv2:maximum 9223372036854775808.000000 ;
- unit:unit [
- a unit:Unit ;
- rdfs:label "s" ;
- unit:symbol "s" ;
- unit:render "%f s" ;
- ] ;
- ] , [
- a lv2:OutputPort, lv2:ControlPort ;
- lv2:index 8 ;
- lv2:symbol "position" ;
- lv2:name "Position" ;
- lv2:minimum 0.000000 ;
- lv2:maximum 100.000000 ;
- unit:unit [
- a unit:Unit ;
- rdfs:label "%" ;
- unit:symbol "%" ;
- unit:render "%f %" ;
- ] ;
- ] ;
-
- doap:license <http://opensource.org/licenses/GPL-2.0> ;
- doap:name "MIDI File" ;
- doap:developer [ foaf:name "falkTX" ] ;
- doap:maintainer [ foaf:name "falkTX" ] ;
-
- lv2:microVersion 22 ;
- lv2:minorVersion 149 ;
- lv2:symbol "midifile" .
|