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.

audiofile.ttl 2.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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/audiofile>
  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> ;
  30. lv2:port [
  31. a lv2:OutputPort, atom:AtomPort ;
  32. atom:bufferType atom:Sequence ;
  33. lv2:index 1 ;
  34. lv2:symbol "lv2_events_out" ;
  35. lv2:name "Events Output" ;
  36. ] ;
  37. lv2:port [
  38. a lv2:InputPort, lv2:ControlPort ;
  39. lv2:index 2 ;
  40. lv2:symbol "lv2_freewheel" ;
  41. lv2:name "Freewheel" ;
  42. lv2:default 0.0 ;
  43. lv2:minimum 0.0 ;
  44. lv2:maximum 1.0 ;
  45. lv2:designation <http://lv2plug.in/ns/lv2core#freeWheeling> ;
  46. lv2:portProperty lv2:toggled, <http://lv2plug.in/ns/ext/port-props#notOnGUI> ;
  47. ] ;
  48. lv2:port [
  49. a lv2:OutputPort, lv2:AudioPort ;
  50. lv2:index 3 ;
  51. lv2:symbol "lv2_audio_out_1" ;
  52. lv2:name "Audio Output 1" ;
  53. ] , [
  54. a lv2:OutputPort, lv2:AudioPort ;
  55. lv2:index 4 ;
  56. lv2:symbol "lv2_audio_out_2" ;
  57. lv2:name "Audio Output 2" ;
  58. ] ;
  59. lv2:port [
  60. a lv2:InputPort, lv2:ControlPort ;
  61. lv2:index 5 ;
  62. lv2:symbol "loop_mode" ;
  63. lv2:name "Loop Mode" ;
  64. lv2:default 1.000000 ;
  65. lv2:minimum 0.000000 ;
  66. lv2:maximum 1.000000 ;
  67. lv2:portProperty lv2:toggled ;
  68. ] ;
  69. doap:name "Audio File" ;
  70. doap:maintainer [ foaf:name "falkTX" ] .