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.

54 lines
1.7KB

  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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  6. @prefix ui: <http://lv2plug.in/ns/extensions/ui#> .
  7. <http://kxstudio.sf.net/carla>
  8. a lv2:Plugin ;
  9. lv2:requiredFeature <http://lv2plug.in/ns/ext/buf-size#boundedBlockLength> ,
  10. <http://lv2plug.in/ns/ext/urid#map> ;
  11. lv2:extensionData <http://lv2plug.in/ns/ext/options#interface> ,
  12. <http://lv2plug.in/ns/ext/state#interface> ;
  13. # ui:ui <http://kxstudio.sf.net/carla#ui> ;
  14. lv2:port [
  15. a lv2:InputPort, lv2:AudioPort ;
  16. lv2:index 0 ;
  17. lv2:symbol "audio_in_1" ;
  18. lv2:name "Audio Input 1" ;
  19. ] ,
  20. [
  21. a lv2:InputPort, lv2:AudioPort ;
  22. lv2:index 1 ;
  23. lv2:symbol "audio_in_2" ;
  24. lv2:name "Audio Input 2" ;
  25. ] ,
  26. [
  27. a lv2:OutputPort, lv2:AudioPort ;
  28. lv2:index 2 ;
  29. lv2:symbol "audio_out_1" ;
  30. lv2:name "Audio Output 1" ;
  31. ] ,
  32. [
  33. a lv2:OutputPort, lv2:AudioPort ;
  34. lv2:index 3 ;
  35. lv2:symbol "audio_out_2" ;
  36. lv2:name "Audio Output 2" ;
  37. ] ,
  38. [
  39. a lv2:InputPort, atom:AtomPort ;
  40. atom:bufferType atom:Sequence ;
  41. atom:supports <http://lv2plug.in/ns/ext/midi#MidiEvent> ,
  42. <http://lv2plug.in/ns/ext/time#Position> ;
  43. lv2:index 4 ;
  44. lv2:symbol "events_in" ;
  45. lv2:name "Events Input" ;
  46. lv2:designation lv2:control ;
  47. ] ;
  48. doap:name "Carla Plugin" ;
  49. doap:maintainer [ foaf:name "falkTX" ] .