1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- @prefix doap: <http://usefulinc.com/ns/doap#> .
- @prefix foaf: <http://xmlns.com/foaf/0.1/> .
- @prefix lv2: <http://lv2plug.in/ns/lv2core#> .
- @prefix param: <http://lv2plug.in/ns/ext/parameters#> .
- @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
- @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
- @prefix pg: <http://lv2plug.in/ns/ext/port-groups#> .
- @prefix pprop: <http://lv2plug.in/ns/ext/port-props#> .
- @prefix units: <http://lv2plug.in/ns/extensions/units#> .
- <http://example.com/lucianodato#me>
- a foaf:Person ;
- foaf:name "Luciano Dato" ;
- foaf:homepage <https://github.com/lucianodato> ;
- foaf:mbox <mailto:lucianodato@gmail.com> .
- <https://github.com/lucianodato/speech-denoiser>
- a lv2:Plugin, lv2:SpectralPlugin, lv2:UtilityPlugin, doap:Project ;
- doap:maintainer <http://example.com/lucianodato#me> ;
- doap:license <https://opensource.org/licenses/LGPL-3.0> ;
- doap:name "Speech Denoiser";
- @VERSION@
- lv2:optionalFeature lv2:hardRTCapable ;
- lv2:port [
- a lv2:InputPort, lv2:ControlPort ;
- lv2:index 0 ;
- lv2:name "Enable" ;
- lv2:symbol "enable" ;
- lv2:default 1.0 ;
- lv2:minimum 0.0 ;
- lv2:maximum 1.0 ;
- lv2:portProperty lv2:toggled, pprop:notOnGUI;
- lv2:designation <http://ardour.org/lv2/processing#enable>;
- ], [
- a lv2:OutputPort,
- lv2:ControlPort ;
- lv2:name "latency" ;
- lv2:index 1 ;
- lv2:symbol "latency" ;
- lv2:minimum 0 ;
- lv2:maximum 8192 ;
- lv2:portProperty lv2:reportsLatency, lv2:integer, pprop:notOnGUI ;
- units:unit units:samples ;
- ], [
- a lv2:AudioPort,
- lv2:InputPort ;
- lv2:index 2 ;
- lv2:symbol "input" ;
- lv2:name "Input" ;
- ], [
- a lv2:AudioPort,
- lv2:OutputPort ;
- lv2:index 3 ;
- lv2:symbol "output" ;
- lv2:name "Output" ;
- ];
- .
|