|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- @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 opts: <http://lv2plug.in/ns/ext/options#> .
- @prefix patch: <http://lv2plug.in/ns/ext/patch#> .
-
- <http://kxstudio.sf.net/carla/plugins/audiofile>
- a lv2:UtilityPlugin, lv2:Plugin ;
-
- lv2:optionalFeature <http://lv2plug.in/ns/lv2core#hardRTCapable> ;
-
- lv2:requiredFeature <http://lv2plug.in/ns/ext/buf-size#boundedBlockLength> ,
- <http://lv2plug.in/ns/ext/options#options> ,
- <http://lv2plug.in/ns/ext/urid#map> ;
-
- lv2:extensionData <http://lv2plug.in/ns/ext/options#interface> ;
- lv2:extensionData <http://lv2plug.in/ns/ext/state#interface> ;
- lv2:extensionData <http://kxstudio.sf.net/ns/lv2ext/programs#Interface> ;
- lv2:extensionData <http://lv2plug.in/ns/ext/worker#interface> ;
-
- opts:supportedOption <http://lv2plug.in/ns/ext/buf-size#nominalBlockLength> ,
- <http://lv2plug.in/ns/ext/buf-size#maxBlockLength> ,
- <http://lv2plug.in/ns/ext/parameters#sampleRate> ;
-
- lv2:port [
- a lv2:InputPort, atom:AtomPort ;
- atom:bufferType atom:Sequence ;
- atom:supports <http://lv2plug.in/ns/ext/time#Position> ;
- lv2:designation lv2:control ;
- lv2:index 0 ;
- lv2:symbol "lv2_events_in" ;
- lv2:name "Events Input" ;
- ] ;
-
- patch:writable <http://kxstudio.sf.net/carla/file> ;
-
- lv2:port [
- a lv2:OutputPort, atom:AtomPort ;
- atom:bufferType atom:Sequence ;
- lv2:index 1 ;
- lv2:symbol "lv2_events_out" ;
- lv2:name "Events Output" ;
- ] ;
-
- lv2:port [
- a lv2:InputPort, lv2:ControlPort ;
- lv2:index 2 ;
- lv2:symbol "lv2_freewheel" ;
- lv2:name "Freewheel" ;
- lv2:default 0.0 ;
- lv2:minimum 0.0 ;
- lv2:maximum 1.0 ;
- lv2:designation <http://lv2plug.in/ns/lv2core#freeWheeling> ;
- lv2:portProperty lv2:toggled, <http://lv2plug.in/ns/ext/port-props#notOnGUI> ;
- ] ;
-
- lv2:port [
- a lv2:OutputPort, lv2:AudioPort ;
- lv2:index 3 ;
- lv2:symbol "lv2_audio_out_1" ;
- lv2:name "Audio Output 1" ;
- ] , [
- a lv2:OutputPort, lv2:AudioPort ;
- lv2:index 4 ;
- lv2:symbol "lv2_audio_out_2" ;
- lv2:name "Audio Output 2" ;
- ] ;
-
- lv2:port [
- a lv2:InputPort, lv2:ControlPort ;
- lv2:index 5 ;
- lv2:symbol "loop_mode" ;
- lv2:name "Loop Mode" ;
- lv2:default 1.000000 ;
- lv2:minimum 0.000000 ;
- lv2:maximum 1.000000 ;
- lv2:portProperty lv2:toggled ;
- ] ;
-
- doap:name "Audio File" ;
- doap:maintainer [ foaf:name "falkTX" ] .
|