Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

midifile.ttl 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. @prefix atom: <http://lv2plug.in/ns/ext/atom#> .
  2. @prefix doap: <http://usefulinc.com/ns/doap#> .
  3. @prefix foaf: <http://xmlns.com/foaf/0.1/> .
  4. @prefix lv2: <http://lv2plug.in/ns/lv2core#> .
  5. @prefix opts: <http://lv2plug.in/ns/ext/options#> .
  6. @prefix patch: <http://lv2plug.in/ns/ext/patch#> .
  7. <http://kxstudio.sf.net/carla/plugins/midifile>
  8. a lv2:UtilityPlugin, lv2:Plugin ;
  9. lv2:optionalFeature <http://lv2plug.in/ns/lv2core#hardRTCapable> ;
  10. lv2:requiredFeature <http://lv2plug.in/ns/ext/buf-size#boundedBlockLength> ,
  11. <http://lv2plug.in/ns/ext/options#options> ,
  12. <http://lv2plug.in/ns/ext/urid#map> ;
  13. lv2:extensionData <http://lv2plug.in/ns/ext/options#interface> ;
  14. lv2:extensionData <http://lv2plug.in/ns/ext/state#interface> ;
  15. lv2:extensionData <http://kxstudio.sf.net/ns/lv2ext/programs#Interface> ;
  16. lv2:extensionData <http://lv2plug.in/ns/ext/worker#interface> ;
  17. opts:supportedOption <http://lv2plug.in/ns/ext/buf-size#nominalBlockLength> ,
  18. <http://lv2plug.in/ns/ext/buf-size#maxBlockLength> ,
  19. <http://lv2plug.in/ns/ext/parameters#sampleRate> ;
  20. lv2:port [
  21. a lv2:InputPort, atom:AtomPort ;
  22. atom:bufferType atom:Sequence ;
  23. atom:supports <http://lv2plug.in/ns/ext/time#Position> ;
  24. lv2:designation lv2:control ;
  25. lv2:index 0 ;
  26. lv2:symbol "lv2_events_in" ;
  27. lv2:name "Events Input" ;
  28. ] ;
  29. patch:writable <http://kxstudio.sf.net/carla/file/midi> ;
  30. lv2:port [
  31. a lv2:OutputPort, atom:AtomPort ;
  32. atom:bufferType atom:Sequence ;
  33. atom:supports <http://lv2plug.in/ns/ext/midi#MidiEvent> ;
  34. lv2:index 1 ;
  35. lv2:symbol "lv2_events_out" ;
  36. lv2:name "Events Output" ;
  37. ] ;
  38. lv2:port [
  39. a lv2:InputPort, lv2:ControlPort ;
  40. lv2:index 2 ;
  41. lv2:symbol "lv2_freewheel" ;
  42. lv2:name "Freewheel" ;
  43. lv2:default 0.0 ;
  44. lv2:minimum 0.0 ;
  45. lv2:maximum 1.0 ;
  46. lv2:designation <http://lv2plug.in/ns/lv2core#freeWheeling> ;
  47. lv2:portProperty lv2:toggled, <http://lv2plug.in/ns/ext/port-props#notOnGUI> ;
  48. ] ;
  49. doap:name "MIDI File" ;
  50. doap:maintainer [ foaf:name "falkTX" ] .