|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- @prefix atom: <http://lv2plug.in/ns/ext/atom#> .
- @prefix doap: <http://usefulinc.com/ns/doap#> .
- @prefix foaf: <http://xmlns.com/foaf/0.1/> .
- @prefix lv2: <http://lv2plug.in/ns/lv2core#> .
- @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
- @prefix ui: <http://lv2plug.in/ns/extensions/ui#> .
-
- <http://kxstudio.sf.net/carla>
- a lv2:Plugin ;
- lv2:requiredFeature <http://lv2plug.in/ns/ext/buf-size#boundedBlockLength> ,
- <http://lv2plug.in/ns/ext/urid#map> ;
- lv2:extensionData <http://lv2plug.in/ns/ext/options#interface> ,
- <http://lv2plug.in/ns/ext/state#interface> ;
-
- # ui:ui <http://kxstudio.sf.net/carla#ui> ;
-
- lv2:port [
- a lv2:InputPort, lv2:AudioPort ;
- lv2:index 0 ;
- lv2:symbol "audio_in_1" ;
- lv2:name "Audio Input 1" ;
- ] ,
- [
- a lv2:InputPort, lv2:AudioPort ;
- lv2:index 1 ;
- lv2:symbol "audio_in_2" ;
- lv2:name "Audio Input 2" ;
- ] ,
- [
- a lv2:OutputPort, lv2:AudioPort ;
- lv2:index 2 ;
- lv2:symbol "audio_out_1" ;
- lv2:name "Audio Output 1" ;
- ] ,
- [
- a lv2:OutputPort, lv2:AudioPort ;
- lv2:index 3 ;
- lv2:symbol "audio_out_2" ;
- lv2:name "Audio Output 2" ;
- ] ,
- [
- a lv2:InputPort, atom:AtomPort ;
- atom:bufferType atom:Sequence ;
- atom:supports <http://lv2plug.in/ns/ext/midi#MidiEvent> ,
- <http://lv2plug.in/ns/ext/time#Position> ;
- lv2:index 4 ;
- lv2:symbol "events_in" ;
- lv2:name "Events Input" ;
- lv2:designation lv2:control ;
- ] ;
-
- doap:name "Carla Plugin" ;
- doap:maintainer [ foaf:name "falkTX" ] .
|