aboutsummaryrefslogtreecommitdiffstats
path: root/mdala.lv2/Loudness.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-28 00:19:37 +0000
committerDavid Robillard <d@drobilla.net>2012-03-28 00:19:37 +0000
commit71b9c3ae5fb85414f56c152eaf9d075bbfc0f6ff (patch)
tree26362d908f0bf1a9480d511487ac6e006d3f02b7 /mdala.lv2/Loudness.ttl
parentcff1d802d8208f675e33ae50a5ac34018c1367c7 (diff)
downloadmda.lv2-71b9c3ae5fb85414f56c152eaf9d075bbfc0f6ff.tar.gz
mda.lv2-71b9c3ae5fb85414f56c152eaf9d075bbfc0f6ff.tar.bz2
mda.lv2-71b9c3ae5fb85414f56c152eaf9d075bbfc0f6ff.zip
Mark up control properties, port groups, and add documentation for plugins and ports.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/mdala.lv2@4118 a436a847-0d15-0410-975c-d299462d15a1
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 ;