aboutsummaryrefslogtreecommitdiffstats
path: root/mda.lv2/Overdrive.ttl
diff options
context:
space:
mode:
Diffstat (limited to 'mda.lv2/Overdrive.ttl')
-rw-r--r--mda.lv2/Overdrive.ttl80
1 files changed, 80 insertions, 0 deletions
diff --git a/mda.lv2/Overdrive.ttl b/mda.lv2/Overdrive.ttl
new file mode 100644
index 0000000..a1e9563
--- /dev/null
+++ b/mda.lv2/Overdrive.ttl
@@ -0,0 +1,80 @@
+@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:Overdrive
+ a lv2:Plugin ,
+ lv2:DistortionPlugin ;
+ lv2:symbol "Overdrive" ;
+ doap:name "MDA Overdrive" ;
+ doap:shortdesc "Soft distortion" ;
+ doap:license <http://usefulinc.com/doap/licenses/gpl> ;
+ lv2:pluginProperty lv2:hardRTCapable ;
+ pg:mainInput mda:mainIn ;
+ pg:mainOutput mda:mainOut ;
+ rdfs:comment "Possible uses include adding body to drum loops, fuzz guitar, and that 'standing outside a nightclub' sound. This plug does not simulate valve distortion, and any attempt to process organ sounds through it will be extremely unrewarding!" ;
+ lv2:port [
+ a lv2:InputPort ,
+ lv2:ControlPort ;
+ lv2:index 0 ;
+ lv2:name "Drive" ;
+ lv2:symbol "drive" ;
+ lv2:default 0 ;
+ lv2:minimum 0.0 ;
+ lv2:maximum 1.0 ;
+ rdfs:comment "Amount of distortion"
+ ] , [
+ a lv2:InputPort ,
+ lv2:ControlPort ;
+ lv2:index 1 ;
+ lv2:name "Muffle" ;
+ lv2:symbol "muffle" ;
+ lv2:default 0 ;
+ lv2:minimum 0.0 ;
+ lv2:maximum 1.0 ;
+ rdfs:comment "Gentle low-pass filter"
+ ] , [
+ a lv2:InputPort ,
+ lv2:ControlPort ;
+ lv2:index 2 ;
+ lv2:name "Output" ;
+ lv2:symbol "output" ;
+ lv2:default 0.5 ;
+ lv2:minimum 0.0 ;
+ lv2:maximum 1.0 ;
+ rdfs:comment "Level trim"
+ ] , [
+ 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
+ ] .