|
- @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#> .
- @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
- @prefix unit: <http://lv2plug.in/ns/extensions/units#> .
-
- <http://kxstudio.sf.net/carla/plugins/audiofile>
- a lv2:UtilityPlugin, lv2:Plugin ;
-
- lv2:optionalFeature <http://lv2plug.in/ns/lv2core#hardRTCapable> ;
- lv2:optionalFeature <http://lv2plug.in/ns/ext/state#threadSafeRestore> ;
-
- lv2:requiredFeature <http://lv2plug.in/ns/ext/buf-size#boundedBlockLength> ,
- <http://lv2plug.in/ns/ext/worker#schedule> ,
- <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> ;
- atom:supports <http://lv2plug.in/ns/ext/patch#Message> ;
- lv2:designation lv2:control ;
- lv2:index 0 ;
- lv2:symbol "lv2_events_in" ;
- lv2:name "Events Input" ;
- ] ;
-
- patch:writable <http://kxstudio.sf.net/carla/file/audio> ;
-
- lv2:port [
- a lv2:OutputPort, atom:AtomPort ;
- atom:bufferType atom:Sequence ;
- atom:supports <http://lv2plug.in/ns/ext/patch#Message> ;
- 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 ;
- lv2:minimum 0 ;
- lv2:maximum 1 ;
- lv2:portProperty lv2:integer, lv2:toggled ;
- ] , [
- a lv2:OutputPort, lv2:ControlPort ;
- lv2:index 6 ;
- lv2:symbol "num_channels" ;
- lv2:name "Num Channels" ;
- lv2:minimum 0 ;
- lv2:maximum 2 ;
- lv2:portProperty lv2:integer ;
- ] , [
- a lv2:OutputPort, lv2:ControlPort ;
- lv2:index 7 ;
- lv2:symbol "bit_rate" ;
- lv2:name "Bit Rate" ;
- lv2:minimum 0 ;
- lv2:maximum 24576000 ;
- lv2:portProperty lv2:integer ;
- ] , [
- a lv2:OutputPort, lv2:ControlPort ;
- lv2:index 8 ;
- lv2:symbol "bit_depth" ;
- lv2:name "Bit Depth" ;
- lv2:minimum 0 ;
- lv2:maximum 32 ;
- lv2:portProperty lv2:integer ;
- ] , [
- a lv2:OutputPort, lv2:ControlPort ;
- lv2:index 9 ;
- lv2:symbol "sample_rate" ;
- lv2:name "Sample Rate" ;
- lv2:minimum 0 ;
- lv2:maximum 384000 ;
- lv2:portProperty lv2:integer ;
- ] , [
- a lv2:OutputPort, lv2:ControlPort ;
- lv2:index 10 ;
- lv2:symbol "length" ;
- lv2:name "Length" ;
- lv2:minimum 0.0 ;
- lv2:maximum 9223372036854775808.0 ;
- unit:unit [
- a unit:Unit ;
- rdfs:label "s" ;
- unit:symbol "s" ;
- unit:render "%f s" ;
- ] ;
- ] ;
-
- doap:license <http://opensource.org/licenses/GPL-2.0> ;
- doap:name "Audio File" ;
- doap:developer [ foaf:name "falkTX" ] ;
- doap:maintainer [ foaf:name "falkTX" ] ;
-
- lv2:microVersion 22 ;
- lv2:minorVersion 146 ;
- lv2:symbol "audiofile" .
|