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.

manifest.ttl 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. @prefix atom: <http://lv2plug.in/ns/ext/atom#> .
  2. @prefix lv2: <http://lv2plug.in/ns/lv2core#> .
  3. @prefix mod: <http://moddevices.com/ns/mod#> .
  4. @prefix opts: <http://lv2plug.in/ns/ext/options#> .
  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/plugins/audiofile>
  8. a lv2:Plugin ;
  9. lv2:binary <carla.so> ;
  10. rdfs:seeAlso <audiofile.ttl> .
  11. <http://kxstudio.sf.net/carla/plugins/midifile>
  12. a lv2:Plugin ;
  13. lv2:binary <carla.so> ;
  14. rdfs:seeAlso <midifile.ttl> .
  15. <http://kxstudio.sf.net/carla/file>
  16. a lv2:Parameter ;
  17. rdfs:label "file" ;
  18. rdfs:range atom:Path .
  19. <http://kxstudio.sf.net/carla/file/audio>
  20. a lv2:Parameter ;
  21. mod:fileTypes "audioloop,audiorecording,audiotrack" ;
  22. rdfs:label "audio file" ;
  23. rdfs:range atom:Path .
  24. <http://kxstudio.sf.net/carla/file/midi>
  25. a lv2:Parameter ;
  26. mod:fileTypes "midisong" ;
  27. rdfs:label "midi file" ;
  28. rdfs:range atom:Path .
  29. <http://kxstudio.sf.net/carla/preview>
  30. a lv2:Parameter ;
  31. rdfs:label "preview" ;
  32. rdfs:range atom:Vector .