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.

135 lines
4.5KB

  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. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  8. @prefix unit: <http://lv2plug.in/ns/extensions/units#> .
  9. <http://kxstudio.sf.net/carla/plugins/midifile>
  10. a lv2:UtilityPlugin, lv2:Plugin ;
  11. lv2:optionalFeature <http://lv2plug.in/ns/lv2core#hardRTCapable> ;
  12. lv2:optionalFeature <http://lv2plug.in/ns/ext/state#threadSafeRestore> ;
  13. lv2:requiredFeature <http://lv2plug.in/ns/ext/buf-size#boundedBlockLength> ,
  14. <http://lv2plug.in/ns/ext/options#options> ,
  15. <http://lv2plug.in/ns/ext/urid#map> ;
  16. lv2:extensionData <http://lv2plug.in/ns/ext/options#interface> ;
  17. lv2:extensionData <http://lv2plug.in/ns/ext/state#interface> ;
  18. lv2:extensionData <http://kxstudio.sf.net/ns/lv2ext/programs#Interface> ;
  19. lv2:extensionData <http://lv2plug.in/ns/ext/worker#interface> ;
  20. opts:supportedOption <http://lv2plug.in/ns/ext/buf-size#nominalBlockLength> ,
  21. <http://lv2plug.in/ns/ext/buf-size#maxBlockLength> ,
  22. <http://lv2plug.in/ns/ext/parameters#sampleRate> ;
  23. lv2:port [
  24. a lv2:InputPort, atom:AtomPort ;
  25. atom:bufferType atom:Sequence ;
  26. atom:supports <http://lv2plug.in/ns/ext/time#Position> ;
  27. atom:supports <http://lv2plug.in/ns/ext/patch#Message> ;
  28. lv2:designation lv2:control ;
  29. lv2:index 0 ;
  30. lv2:symbol "lv2_events_in" ;
  31. lv2:name "Events Input" ;
  32. ] ;
  33. patch:writable <http://kxstudio.sf.net/carla/file/midi> ;
  34. lv2:port [
  35. a lv2:OutputPort, atom:AtomPort ;
  36. atom:bufferType atom:Sequence ;
  37. atom:supports <http://lv2plug.in/ns/ext/midi#MidiEvent> ;
  38. atom:supports <http://lv2plug.in/ns/ext/patch#Message> ;
  39. lv2:index 1 ;
  40. lv2:symbol "lv2_events_out" ;
  41. lv2:name "Events Output" ;
  42. ] ;
  43. lv2:port [
  44. a lv2:InputPort, lv2:ControlPort ;
  45. lv2:index 2 ;
  46. lv2:symbol "lv2_freewheel" ;
  47. lv2:name "Freewheel" ;
  48. lv2:default 0.0 ;
  49. lv2:minimum 0.0 ;
  50. lv2:maximum 1.0 ;
  51. lv2:designation <http://lv2plug.in/ns/lv2core#freeWheeling> ;
  52. lv2:portProperty lv2:toggled, <http://lv2plug.in/ns/ext/port-props#notOnGUI> ;
  53. ] ;
  54. lv2:port [
  55. a lv2:InputPort, lv2:ControlPort ;
  56. lv2:index 3 ;
  57. lv2:symbol "repeat_mode" ;
  58. lv2:name "Repeat Mode" ;
  59. lv2:default 0.000000 ;
  60. lv2:minimum 0.000000 ;
  61. lv2:maximum 1.000000 ;
  62. lv2:portProperty lv2:toggled ;
  63. ] , [
  64. a lv2:InputPort, lv2:ControlPort ;
  65. lv2:index 4 ;
  66. lv2:symbol "host_sync" ;
  67. lv2:name "Host Sync" ;
  68. lv2:default 1.000000 ;
  69. lv2:minimum 0.000000 ;
  70. lv2:maximum 1.000000 ;
  71. lv2:portProperty lv2:toggled ;
  72. ] , [
  73. a lv2:InputPort, lv2:ControlPort ;
  74. lv2:index 5 ;
  75. lv2:symbol "enabled" ;
  76. lv2:name "Enabled" ;
  77. lv2:default 1.000000 ;
  78. lv2:minimum 0.000000 ;
  79. lv2:maximum 1.000000 ;
  80. lv2:portProperty lv2:toggled ;
  81. ] , [
  82. a lv2:OutputPort, lv2:ControlPort ;
  83. lv2:index 6 ;
  84. lv2:symbol "num_tracks" ;
  85. lv2:name "Num Tracks" ;
  86. lv2:minimum 0.000000 ;
  87. lv2:maximum 256.000000 ;
  88. lv2:portProperty lv2:integer ;
  89. ] , [
  90. a lv2:OutputPort, lv2:ControlPort ;
  91. lv2:index 7 ;
  92. lv2:symbol "length" ;
  93. lv2:name "Length" ;
  94. lv2:minimum 0.000000 ;
  95. lv2:maximum 9223372036854775808.000000 ;
  96. unit:unit [
  97. a unit:Unit ;
  98. rdfs:label "s" ;
  99. unit:symbol "s" ;
  100. unit:render "%f s" ;
  101. ] ;
  102. ] , [
  103. a lv2:OutputPort, lv2:ControlPort ;
  104. lv2:index 8 ;
  105. lv2:symbol "position" ;
  106. lv2:name "Position" ;
  107. lv2:minimum 0.000000 ;
  108. lv2:maximum 100.000000 ;
  109. unit:unit [
  110. a unit:Unit ;
  111. rdfs:label "%" ;
  112. unit:symbol "%" ;
  113. unit:render "%f %" ;
  114. ] ;
  115. ] ;
  116. doap:license <http://opensource.org/licenses/GPL-2.0> ;
  117. doap:name "MIDI File" ;
  118. doap:developer [ foaf:name "falkTX" ] ;
  119. doap:maintainer [ foaf:name "falkTX" ] ;
  120. lv2:microVersion 22 ;
  121. lv2:minorVersion 149 ;
  122. lv2:symbol "midifile" .