diff options
Diffstat (limited to 'mda.lv2/DeEss.ttl')
-rw-r--r-- | mda.lv2/DeEss.ttl | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/mda.lv2/DeEss.ttl b/mda.lv2/DeEss.ttl new file mode 100644 index 0000000..f953385 --- /dev/null +++ b/mda.lv2/DeEss.ttl @@ -0,0 +1,82 @@ +@prefix doap: <http://usefulinc.com/ns/doap#> . +@prefix lv2: <http://lv2plug.in/ns/lv2core#> . +@prefix mda: <http://drobilla.net/plugins/mda/> . +@prefix pg: <http://lv2plug.in/ns/ext/port-groups#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . + +mda:DeEss + a lv2:Plugin , + lv2:DynamicsPlugin ; + lv2:symbol "DeEss" ; + doap:name "MDA De-ess" ; + doap:shortdesc "High frequency dynamics processor" ; + doap:license <http://usefulinc.com/doap/licenses/gpl> ; + lv2:pluginProperty lv2:hardRTCapable ; + pg:mainInput mda:mainIn ; + pg:mainOutput mda:mainOut ; + rdfs:comment """Reduce excessive sibilants (/s/ /t/ /sh/ etc.) in vocals and speech. + +For stronger de-essing you may want to use two plug-ins in series, or apply processing twice.""" ; + lv2:port [ + a lv2:InputPort , + lv2:ControlPort ; + lv2:index 0 ; + lv2:name "Thresh" ; + lv2:symbol "thresh" ; + lv2:default 0.5 ; + lv2:minimum 0.0 ; + lv2:maximum 1.0 ; + rdfs:comment "Set maximum level for high frequencies" + ] , [ + a lv2:InputPort , + lv2:ControlPort ; + lv2:index 1 ; + lv2:name "Freq" ; + lv2:symbol "freq" ; + lv2:default 0.6 ; + lv2:minimum 0.0 ; + lv2:maximum 1.0 ; + rdfs:comment "Lowest frequency affected (a HF shelf is used for stronger de-essing than designs that work on a frequency band)" + ] , [ + a lv2:InputPort , + lv2:ControlPort ; + lv2:index 2 ; + lv2:name "HF Drive" ; + lv2:symbol "hf_drive" ; + lv2:default 0.5 ; + lv2:minimum 0.0 ; + lv2:maximum 1.0 ; + rdfs:comment "Boost high frequencies before de-essing - can be used to enhance breathy vocals" + ] , [ + a lv2:InputPort , + lv2:AudioPort ; + lv2:index 3 ; + lv2:symbol "left_in" ; + lv2:name "Left In" ; + lv2:designation pg:left ; + pg:group mda:mainIn + ] , [ + a lv2:InputPort , + lv2:AudioPort ; + lv2:index 4 ; + lv2:symbol "right_in" ; + lv2:name "Right In" ; + lv2:designation pg:right ; + pg:group mda:mainIn + ] , [ + a lv2:OutputPort , + lv2:AudioPort ; + lv2:index 5 ; + lv2:symbol "left_out" ; + lv2:name "Left Out" ; + lv2:designation pg:left ; + pg:group mda:mainOut + ] , [ + a lv2:OutputPort , + lv2:AudioPort ; + lv2:index 6 ; + lv2:symbol "right_out" ; + lv2:name "Right Out" ; + lv2:designation pg:right ; + pg:group mda:mainOut + ] . |