This commit is contained in:
2026-03-02 12:31:07 -05:00
parent 3f72e52595
commit 25b3feda41
6 changed files with 883 additions and 0 deletions

47
denoise.ttl Normal file
View File

@@ -0,0 +1,47 @@
# denoise.ttl
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix pprops: <http://lv2plug.in/ns/ext/port-props#> .
<urn:noiseless-lv2:denoise>
a lv2:Plugin, lv2:UtilityPlugin ;
doap:name "nnnoiseless Denoise" ;
doap:license <http://opensource.org/licenses/MIT> ;
lv2:port [
a lv2:InputPort, lv2:AudioPort ;
lv2:index 0 ;
lv2:symbol "input" ;
lv2:name "Input"
] , [
a lv2:OutputPort, lv2:AudioPort ;
lv2:index 1 ;
lv2:symbol "output" ;
lv2:name "Output"
] , [
a lv2:InputPort, lv2:ControlPort ;
lv2:index 2 ;
lv2:symbol "attenuation" ;
lv2:name "Denoise Strength" ;
lv2:default 100.0 ;
lv2:minimum 0.0 ;
lv2:maximum 100.0 ;
lv2:portProperty pprops:hasStrictBounds
] , [
a lv2:InputPort, lv2:ControlPort ;
lv2:index 3 ;
lv2:symbol "vad_threshold" ;
lv2:name "VAD Threshold" ;
lv2:default 0.0 ;
lv2:minimum 0.0 ;
lv2:maximum 100.0 ;
lv2:portProperty pprops:hasStrictBounds
] , [
a lv2:InputPort, lv2:ControlPort ;
lv2:index 4 ;
lv2:symbol "mix" ;
lv2:name "Dry/Wet Mix" ;
lv2:default 100.0 ;
lv2:minimum 0.0 ;
lv2:maximum 100.0 ;
lv2:portProperty pprops:hasStrictBounds
] .