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.
|
- @prefix atom: <http://lv2plug.in/ns/ext/atom#> .
- @prefix lv2: <http://lv2plug.in/ns/lv2core#> .
- @prefix mod: <http://moddevices.com/ns/mod#> .
- @prefix opts: <http://lv2plug.in/ns/ext/options#> .
- @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
- @prefix ui: <http://lv2plug.in/ns/extensions/ui#> .
-
- <http://kxstudio.sf.net/carla/plugins/audiofile>
- a lv2:Plugin ;
- lv2:binary <carla.so> ;
- rdfs:seeAlso <audiofile.ttl> .
-
- <http://kxstudio.sf.net/carla/plugins/midifile>
- a lv2:Plugin ;
- lv2:binary <carla.so> ;
- rdfs:seeAlso <midifile.ttl> .
-
- <http://kxstudio.sf.net/carla/file>
- a lv2:Parameter ;
- rdfs:label "file" ;
- rdfs:range atom:Path .
-
- <http://kxstudio.sf.net/carla/file/audio>
- a lv2:Parameter ;
- mod:fileTypes "audiofiles,audioloops" ;
- rdfs:label "audio file" ;
- rdfs:range atom:Path .
-
- <http://kxstudio.sf.net/carla/file/midi>
- a lv2:Parameter ;
- mod:fileTypes "midi" ;
- rdfs:label "midi file" ;
- rdfs:range atom:Path .
|