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.

140 lines
4.6KB

  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/audiofile>
  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/worker#schedule> ,
  15. <http://lv2plug.in/ns/ext/options#options> ,
  16. <http://lv2plug.in/ns/ext/urid#map> ;
  17. lv2:extensionData <http://lv2plug.in/ns/ext/options#interface> ;
  18. lv2:extensionData <http://lv2plug.in/ns/ext/state#interface> ;
  19. lv2:extensionData <http://kxstudio.sf.net/ns/lv2ext/programs#Interface> ;
  20. lv2:extensionData <http://lv2plug.in/ns/ext/worker#interface> ;
  21. opts:supportedOption <http://lv2plug.in/ns/ext/buf-size#nominalBlockLength> ,
  22. <http://lv2plug.in/ns/ext/buf-size#maxBlockLength> ,
  23. <http://lv2plug.in/ns/ext/parameters#sampleRate> ;
  24. lv2:port [
  25. a lv2:InputPort, atom:AtomPort ;
  26. atom:bufferType atom:Sequence ;
  27. atom:supports <http://lv2plug.in/ns/ext/time#Position> ;
  28. atom:supports <http://lv2plug.in/ns/ext/patch#Message> ;
  29. lv2:designation lv2:control ;
  30. lv2:index 0 ;
  31. lv2:symbol "lv2_events_in" ;
  32. lv2:name "Events Input" ;
  33. ] ;
  34. patch:writable <http://kxstudio.sf.net/carla/file/audio> ;
  35. lv2:port [
  36. a lv2:OutputPort, atom:AtomPort ;
  37. atom:bufferType atom:Sequence ;
  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:OutputPort, lv2:AudioPort ;
  56. lv2:index 3 ;
  57. lv2:symbol "lv2_audio_out_1" ;
  58. lv2:name "Audio Output 1" ;
  59. ] , [
  60. a lv2:OutputPort, lv2:AudioPort ;
  61. lv2:index 4 ;
  62. lv2:symbol "lv2_audio_out_2" ;
  63. lv2:name "Audio Output 2" ;
  64. ] ;
  65. lv2:port [
  66. a lv2:InputPort, lv2:ControlPort ;
  67. lv2:index 5 ;
  68. lv2:symbol "loop_mode" ;
  69. lv2:name "Loop Mode" ;
  70. lv2:default 1 ;
  71. lv2:minimum 0 ;
  72. lv2:maximum 1 ;
  73. lv2:portProperty lv2:integer, lv2:toggled ;
  74. ] , [
  75. a lv2:OutputPort, lv2:ControlPort ;
  76. lv2:index 6 ;
  77. lv2:symbol "num_channels" ;
  78. lv2:name "Num Channels" ;
  79. lv2:minimum 0 ;
  80. lv2:maximum 2 ;
  81. lv2:portProperty lv2:integer ;
  82. ] , [
  83. a lv2:OutputPort, lv2:ControlPort ;
  84. lv2:index 7 ;
  85. lv2:symbol "bit_rate" ;
  86. lv2:name "Bit Rate" ;
  87. lv2:minimum 0 ;
  88. lv2:maximum 24576000 ;
  89. lv2:portProperty lv2:integer ;
  90. ] , [
  91. a lv2:OutputPort, lv2:ControlPort ;
  92. lv2:index 8 ;
  93. lv2:symbol "bit_depth" ;
  94. lv2:name "Bit Depth" ;
  95. lv2:minimum 0 ;
  96. lv2:maximum 32 ;
  97. lv2:portProperty lv2:integer ;
  98. ] , [
  99. a lv2:OutputPort, lv2:ControlPort ;
  100. lv2:index 9 ;
  101. lv2:symbol "sample_rate" ;
  102. lv2:name "Sample Rate" ;
  103. lv2:minimum 0 ;
  104. lv2:maximum 384000 ;
  105. lv2:portProperty lv2:integer ;
  106. ] , [
  107. a lv2:OutputPort, lv2:ControlPort ;
  108. lv2:index 10 ;
  109. lv2:symbol "length" ;
  110. lv2:name "Length" ;
  111. lv2:minimum 0.0 ;
  112. lv2:maximum 9223372036854775808.0 ;
  113. unit:unit [
  114. a unit:Unit ;
  115. rdfs:label "s" ;
  116. unit:symbol "s" ;
  117. unit:render "%f s" ;
  118. ] ;
  119. ] ;
  120. doap:license <http://opensource.org/licenses/GPL-2.0> ;
  121. doap:name "Audio File" ;
  122. doap:developer [ foaf:name "falkTX" ] ;
  123. doap:maintainer [ foaf:name "falkTX" ] ;
  124. lv2:microVersion 22 ;
  125. lv2:minorVersion 146 ;
  126. lv2:symbol "audiofile" .