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.

72 lines
2.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 rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  8. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  9. @prefix ui: <http://lv2plug.in/ns/extensions/ui#> .
  10. @prefix unit: <http://lv2plug.in/ns/extensions/units#> .
  11. <http://kxstudio.sf.net/carla/plugins/midichannelize>
  12. a lv2:UtilityPlugin, lv2:Plugin ;
  13. lv2:optionalFeature <http://lv2plug.in/ns/lv2core#hardRTCapable> ;
  14. lv2:requiredFeature <http://lv2plug.in/ns/ext/buf-size#boundedBlockLength> ,
  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://kxstudio.sf.net/ns/lv2ext/programs#Interface> ;
  19. opts:supportedOption <http://lv2plug.in/ns/ext/buf-size#nominalBlockLength> ,
  20. <http://lv2plug.in/ns/ext/buf-size#maxBlockLength> ,
  21. <http://lv2plug.in/ns/ext/parameters#sampleRate> ;
  22. lv2:port [
  23. a lv2:InputPort, atom:AtomPort ;
  24. atom:bufferType atom:Sequence ;
  25. atom:supports <http://lv2plug.in/ns/ext/midi#MidiEvent> ;
  26. lv2:designation lv2:control ;
  27. lv2:index 0 ;
  28. lv2:symbol "lv2_midi_in" ;
  29. lv2:name "MIDI Input" ;
  30. ] ;
  31. lv2:port [
  32. a lv2:OutputPort, atom:AtomPort ;
  33. atom:bufferType atom:Sequence ;
  34. atom:supports <http://lv2plug.in/ns/ext/midi#MidiEvent> ;
  35. lv2:index 1 ;
  36. lv2:symbol "lv2_midi_out" ;
  37. lv2:name "MIDI Output" ;
  38. ] ;
  39. lv2:port [
  40. a lv2:InputPort, lv2:ControlPort ;
  41. lv2:index 2 ;
  42. lv2:symbol "lv2_freewheel" ;
  43. lv2:name "Freewheel" ;
  44. lv2:default 0.0 ;
  45. lv2:minimum 0.0 ;
  46. lv2:maximum 1.0 ;
  47. lv2:designation <http://lv2plug.in/ns/lv2core#freeWheeling> ;
  48. lv2:portProperty lv2:toggled, <http://lv2plug.in/ns/ext/port-props#notOnGUI> ;
  49. ] ;
  50. lv2:port [
  51. a lv2:InputPort, lv2:ControlPort ;
  52. lv2:index 3 ;
  53. lv2:symbol "channel" ;
  54. lv2:name "Channel" ;
  55. lv2:default 1.000000 ;
  56. lv2:minimum 1.000000 ;
  57. lv2:maximum 16.000000 ;
  58. lv2:portProperty lv2:integer ;
  59. ] ;
  60. doap:name "MIDI Channelize" ;
  61. doap:maintainer [ foaf:name "falkTX" ] .