aboutsummaryrefslogtreecommitdiffstats
path: root/mdala.lv2/Loudness.ttl
diff options
context:
space:
mode:
Diffstat (limited to 'mdala.lv2/Loudness.ttl')
-rw-r--r--mdala.lv2/Loudness.ttl18
1 files changed, 15 insertions, 3 deletions
diff --git a/mdala.lv2/Loudness.ttl b/mdala.lv2/Loudness.ttl
index 12ec6eb..ea00356 100644
--- a/mdala.lv2/Loudness.ttl
+++ b/mdala.lv2/Loudness.ttl
@@ -2,6 +2,7 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix mdala: <http://drobilla.net/plugins/mdala/> .
@prefix pg: <http://lv2plug.in/ns/ext/port-groups#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
mdala:Loudness
a lv2:Plugin ,
@@ -13,6 +14,14 @@ mdala:Loudness
lv2:pluginProperty lv2:hardRTCapable ;
pg:mainInput mdala:mainIn ;
pg:mainOutput mdala:mainOut ;
+ rdfs:comment """The ear is less sensitive to low frequencies when listening at low volume. This plug-in is based on the Stevens-Davis equal loudness contours and allows the bass level to be adjusted to simulate or correct for this effect.
+
+Example uses:
+
+If a mix was made with a very low or very high monitoring level, the amount of bass can sound wrong at a normal monitoring level. Use Loudness to adjust the bass content.
+Check how a mix would sound at a much louder level by decreasing Loudness. (although the non-linear behaviour of the ear at very high levels is not simulated by this plug-in).
+
+Fade out without the sound becoming "tinny" by activating Link and using Loudness to adjust the level without affecting the tonal balance.""" ;
lv2:port [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -21,7 +30,8 @@ mdala:Loudness
lv2:symbol "loudness" ;
lv2:default 0.7 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ rdfs:comment "Source level relative to listening level (based on a 100 dB SPL maximum level)"
] , [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -30,7 +40,8 @@ mdala:Loudness
lv2:symbol "output" ;
lv2:default 0.5 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ rdfs:comment "Level trim"
] , [
a lv2:InputPort ,
lv2:ControlPort ;
@@ -39,7 +50,8 @@ mdala:Loudness
lv2:symbol "link" ;
lv2:default 0.35 ;
lv2:minimum 0.0 ;
- lv2:maximum 1.0
+ lv2:maximum 1.0 ;
+ rdfs:comment "Automatically adjusts Output to maintain a consistent tonal balance at all levels"
] , [
a lv2:InputPort ,
lv2:AudioPort ;