LV2 Extensions
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.

63 lines
1.8KB

  1. @prefix lv2: <http://lv2plug.in/ns/lv2core#> .
  2. @prefix owl: <http://www.w3.org/2002/07/owl#> .
  3. @prefix progs: <http://kxstudio.sf.net/ns/lv2ext/programs#> .
  4. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  5. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  6. @prefix ui: <http://lv2plug.in/ns/extensions/ui#> .
  7. @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
  8. <http://kxstudio.sf.net/ns/lv2ext/programs>
  9. a owl:Ontology ;
  10. rdfs:seeAlso <programs.h> ,
  11. <programs.doap.ttl> ,
  12. <../kx-meta/meta.ttl> ;
  13. lv2:documentation """
  14. <p>
  15. LV2 Programs is an <a href="http://lv2plug.in/ns/lv2core#Specification" target="_blank">LV2 Extension</a> that allows a host to access plugin-side midi-mapped programs.<br/>
  16. It is not the same as <a href="http://lv2plug.in/ns/ext/presets" target="_blank">LV2 Presets</a>,
  17. which defines host-side presets where the plugin has no control or role whatsoever.<br/>
  18. </p>
  19. <p>
  20. List of plugins that use this extension:
  21. </p>
  22. <ul>
  23. <li><a href="http://distrho.sourceforge.net" target="_blank">DISTRHO Plugins and Ports</a></li>
  24. <li><a href="http://drobilla.net/software/mda-lv2/" target="_blank">mda-lv2</a> (using <a href="mda-lv2_programs.patch" target="_blank">this patch</a>)</li>
  25. </ul>
  26. <p>
  27. List of hosts that support this extension:
  28. </p>
  29. <ul>
  30. <li><a href="http://kxstudio.sf.net/Applications:Carla" target="_blank">Carla</a></li>
  31. <li><a href="http://qtractor.sourceforge.net" target="_blank">Qtractor</a></li>
  32. </ul>
  33. """ .
  34. progs:Host
  35. a lv2:Feature ;
  36. lv2:documentation """
  37. <p>
  38. TODO
  39. </p>
  40. """ .
  41. progs:Interface
  42. a lv2:ExtensionData ;
  43. rdfs:label "Programs Plugin Interface" ;
  44. lv2:documentation """
  45. <p>
  46. TODO
  47. </p>
  48. """ .
  49. progs:UIInterface
  50. a lv2:ExtensionData ;
  51. rdfs:label "Programs UI Interface" ;
  52. lv2:documentation """
  53. <p>
  54. TODO
  55. </p>
  56. """ .