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.

201 lines
6.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/audiofile>
  10. a lv2:UtilityPlugin, lv2:Plugin ;
  11. lv2:optionalFeature <http://lv2plug.in/ns/lv2core#hardRTCapable> ;
  12. lv2:optionalFeature <http://harrisonconsoles.com/lv2/inlinedisplay#queue_draw> ;
  13. lv2:optionalFeature <http://lv2plug.in/ns/ext/state#threadSafeRestore> ;
  14. lv2:requiredFeature <http://lv2plug.in/ns/ext/buf-size#boundedBlockLength> ,
  15. <http://lv2plug.in/ns/ext/worker#schedule> ,
  16. <http://lv2plug.in/ns/ext/options#options> ,
  17. <http://lv2plug.in/ns/ext/urid#map> ;
  18. lv2:extensionData <http://lv2plug.in/ns/ext/options#interface> ;
  19. lv2:extensionData <http://lv2plug.in/ns/ext/state#interface> ;
  20. lv2:extensionData <http://kxstudio.sf.net/ns/lv2ext/programs#Interface> ;
  21. lv2:extensionData <http://lv2plug.in/ns/ext/worker#interface> ;
  22. lv2:extensionData <http://harrisonconsoles.com/lv2/inlinedisplay#interface> ;
  23. opts:supportedOption <http://lv2plug.in/ns/ext/buf-size#nominalBlockLength> ,
  24. <http://lv2plug.in/ns/ext/buf-size#maxBlockLength> ,
  25. <http://lv2plug.in/ns/ext/parameters#sampleRate> ;
  26. lv2:port [
  27. a lv2:InputPort, atom:AtomPort ;
  28. atom:bufferType atom:Sequence ;
  29. atom:supports <http://lv2plug.in/ns/ext/time#Position> ;
  30. atom:supports <http://lv2plug.in/ns/ext/patch#Message> ;
  31. lv2:designation lv2:control ;
  32. lv2:index 0 ;
  33. lv2:symbol "lv2_events_in" ;
  34. lv2:name "Events Input" ;
  35. ] ;
  36. patch:writable <http://kxstudio.sf.net/carla/file/audio> ;
  37. patch:readable <http://kxstudio.sf.net/carla/preview> ;
  38. lv2:port [
  39. a lv2:OutputPort, atom:AtomPort ;
  40. atom:bufferType atom:Sequence ;
  41. atom:supports <http://lv2plug.in/ns/ext/patch#Message> ;
  42. lv2:index 1 ;
  43. lv2:symbol "lv2_events_out" ;
  44. lv2:name "Events Output" ;
  45. ] ;
  46. lv2:port [
  47. a lv2:InputPort, lv2:ControlPort ;
  48. lv2:index 2 ;
  49. lv2:symbol "lv2_freewheel" ;
  50. lv2:name "Freewheel" ;
  51. lv2:default 0.0 ;
  52. lv2:minimum 0.0 ;
  53. lv2:maximum 1.0 ;
  54. lv2:designation <http://lv2plug.in/ns/lv2core#freeWheeling> ;
  55. lv2:portProperty lv2:toggled, <http://lv2plug.in/ns/ext/port-props#notOnGUI> ;
  56. ] ;
  57. lv2:port [
  58. a lv2:OutputPort, lv2:AudioPort ;
  59. lv2:index 3 ;
  60. lv2:symbol "lv2_audio_out_1" ;
  61. lv2:name "Audio Output 1" ;
  62. ] , [
  63. a lv2:OutputPort, lv2:AudioPort ;
  64. lv2:index 4 ;
  65. lv2:symbol "lv2_audio_out_2" ;
  66. lv2:name "Audio Output 2" ;
  67. ] ;
  68. lv2:port [
  69. a lv2:InputPort, lv2:ControlPort ;
  70. lv2:index 5 ;
  71. lv2:symbol "loop_mode" ;
  72. lv2:name "Loop Mode" ;
  73. lv2:default 1.000000 ;
  74. lv2:minimum 0.000000 ;
  75. lv2:maximum 1.000000 ;
  76. lv2:portProperty lv2:toggled ;
  77. ] , [
  78. a lv2:InputPort, lv2:ControlPort ;
  79. lv2:index 6 ;
  80. lv2:symbol "host_sync" ;
  81. lv2:name "Host Sync" ;
  82. lv2:default 1.000000 ;
  83. lv2:minimum 0.000000 ;
  84. lv2:maximum 1.000000 ;
  85. lv2:portProperty lv2:toggled ;
  86. ] , [
  87. a lv2:InputPort, lv2:ControlPort ;
  88. lv2:index 7 ;
  89. lv2:symbol "volume" ;
  90. lv2:name "Volume" ;
  91. lv2:default 100.000000 ;
  92. lv2:minimum 0.000000 ;
  93. lv2:maximum 127.000000 ;
  94. unit:unit [
  95. a unit:Unit ;
  96. rdfs:label "%" ;
  97. unit:symbol "%" ;
  98. unit:render "%f %" ;
  99. ] ;
  100. ] , [
  101. a lv2:InputPort, lv2:ControlPort ;
  102. lv2:index 8 ;
  103. lv2:symbol "enabled" ;
  104. lv2:name "Enabled" ;
  105. lv2:default 1.000000 ;
  106. lv2:minimum 0.000000 ;
  107. lv2:maximum 1.000000 ;
  108. lv2:portProperty lv2:toggled ;
  109. ] , [
  110. a lv2:OutputPort, lv2:ControlPort ;
  111. lv2:index 9 ;
  112. lv2:symbol "num_channels" ;
  113. lv2:name "Num Channels" ;
  114. lv2:minimum 0.000000 ;
  115. lv2:maximum 2.000000 ;
  116. lv2:portProperty lv2:integer ;
  117. ] , [
  118. a lv2:OutputPort, lv2:ControlPort ;
  119. lv2:index 10 ;
  120. lv2:symbol "bit_rate" ;
  121. lv2:name "Bit Rate" ;
  122. lv2:minimum -1.000000 ;
  123. lv2:maximum 49152000.000000 ;
  124. lv2:portProperty lv2:integer ;
  125. ] , [
  126. a lv2:OutputPort, lv2:ControlPort ;
  127. lv2:index 11 ;
  128. lv2:symbol "bit_depth" ;
  129. lv2:name "Bit Depth" ;
  130. lv2:minimum 0.000000 ;
  131. lv2:maximum 64.000000 ;
  132. lv2:portProperty lv2:integer ;
  133. ] , [
  134. a lv2:OutputPort, lv2:ControlPort ;
  135. lv2:index 12 ;
  136. lv2:symbol "sample_rate" ;
  137. lv2:name "Sample Rate" ;
  138. lv2:minimum 0.000000 ;
  139. lv2:maximum 384000.000000 ;
  140. lv2:portProperty lv2:integer ;
  141. ] , [
  142. a lv2:OutputPort, lv2:ControlPort ;
  143. lv2:index 13 ;
  144. lv2:symbol "length" ;
  145. lv2:name "Length" ;
  146. lv2:minimum 0.000000 ;
  147. lv2:maximum 9223372036854775808.000000 ;
  148. unit:unit [
  149. a unit:Unit ;
  150. rdfs:label "s" ;
  151. unit:symbol "s" ;
  152. unit:render "%f s" ;
  153. ] ;
  154. ] , [
  155. a lv2:OutputPort, lv2:ControlPort ;
  156. lv2:index 14 ;
  157. lv2:symbol "position" ;
  158. lv2:name "Position" ;
  159. lv2:minimum 0.000000 ;
  160. lv2:maximum 100.000000 ;
  161. unit:unit [
  162. a unit:Unit ;
  163. rdfs:label "%" ;
  164. unit:symbol "%" ;
  165. unit:render "%f %" ;
  166. ] ;
  167. ] , [
  168. a lv2:OutputPort, lv2:ControlPort ;
  169. lv2:index 15 ;
  170. lv2:symbol "pool_fill" ;
  171. lv2:name "Pool Fill" ;
  172. lv2:minimum 0.000000 ;
  173. lv2:maximum 100.000000 ;
  174. unit:unit [
  175. a unit:Unit ;
  176. rdfs:label "%" ;
  177. unit:symbol "%" ;
  178. unit:render "%f %" ;
  179. ] ;
  180. ] ;
  181. doap:license <http://opensource.org/licenses/GPL-2.0> ;
  182. doap:name "Audio File" ;
  183. doap:developer [ foaf:name "falkTX" ] ;
  184. doap:maintainer [ foaf:name "falkTX" ] ;
  185. lv2:microVersion 22 ;
  186. lv2:minorVersion 149 ;
  187. lv2:symbol "audiofile" .