diff options
author | David Robillard <d@drobilla.net> | 2012-03-28 04:27:34 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-03-28 04:27:34 +0000 |
commit | b9b04f3e6f3930cdebef7339b1162b3c4235469f (patch) | |
tree | fba564a07e9c736c803d63007d3eba9896ef7170 /mdala.lv2/Vocoder.ttl | |
parent | bf7cde64866d735224a920e43f1e1c136c4895c0 (diff) | |
download | mda.lv2-b9b04f3e6f3930cdebef7339b1162b3c4235469f.tar.gz mda.lv2-b9b04f3e6f3930cdebef7339b1162b3c4235469f.tar.bz2 mda.lv2-b9b04f3e6f3930cdebef7339b1162b3c4235469f.zip |
Mdala => MDA.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/mda.lv2@4125 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'mdala.lv2/Vocoder.ttl')
-rw-r--r-- | mdala.lv2/Vocoder.ttl | 142 |
1 files changed, 0 insertions, 142 deletions
diff --git a/mdala.lv2/Vocoder.ttl b/mdala.lv2/Vocoder.ttl deleted file mode 100644 index aeb35ad..0000000 --- a/mdala.lv2/Vocoder.ttl +++ /dev/null @@ -1,142 +0,0 @@ -@prefix doap: <http://usefulinc.com/ns/doap#> . -@prefix lv2: <http://lv2plug.in/ns/lv2core#> . -@prefix mdala: <http://drobilla.net/plugins/mdala/> . -@prefix pg: <http://lv2plug.in/ns/ext/port-groups#> . -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . - -mdala:Vocoder - a lv2:Plugin , - lv2:FilterPlugin ; - lv2:symbol "Vocoder" ; - doap:name "Mdala Vocoder" ; - doap:shortdesc "Switchable 8 or 16 band vocoder" ; - doap:license <http://usefulinc.com/doap/licenses/gpl> ; - lv2:pluginProperty lv2:hardRTCapable ; - pg:mainInput mdala:mainIn ; - pg:mainOutput mdala:mainOut ; - rdfs:comment """16-band vocoder for applying the spectrum of one sound (the modulator, usually a voice or rhythm part) to the waveform of another (the carrier, usually a synth pad or sawtooth wave). - -Note that both carrier and modulator signals are taken from one input channel, which therefore must be stereo for normal operation. This is different to some other vocoder plug-ins where one of the input signals is taken from another plug-in in a different channel.""" ; - lv2:port [ - a lv2:InputPort , - lv2:ControlPort ; - lv2:index 0 ; - lv2:name "Mod In" ; - lv2:symbol "mod_in" ; - lv2:default 0.33 ; - lv2:minimum 0.0 ; - lv2:maximum 1.0 ; - lv2:portProperty lv2:enumeration ; - lv2:scalePoint [ - rdf:value 0.0 ; - rdfs:label "Left" ; - rdfs:comment "Modulator on left channel, carrier on right" - ] , [ - rdf:value 1.0 ; - rdfs:label "Right" ; - rdfs:comment "Modulator on right channel, carrier on left" - ] - ] , [ - a lv2:InputPort , - lv2:ControlPort ; - lv2:index 1 ; - 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:ControlPort ; - lv2:index 2 ; - lv2:name "Hi Thru" ; - lv2:symbol "hi_thru" ; - lv2:default 0.4 ; - lv2:minimum 0.0 ; - lv2:maximum 1.0 ; - rdfs:comment "Level of high frequency input modulator input fed to output - can improve realism and intelligibility" - ] , [ - a lv2:InputPort , - lv2:ControlPort ; - lv2:index 3 ; - lv2:name "Hi Band" ; - lv2:symbol "hi_band" ; - lv2:default 0.4 ; - lv2:minimum 0.0 ; - lv2:maximum 1.0 ; - rdfs:comment "Level of high frequency vocoder band - may be unpleasant for some carrier signals" - ] , [ - a lv2:InputPort , - lv2:ControlPort ; - lv2:index 4 ; - lv2:name "Envelope" ; - lv2:symbol "envelope" ; - lv2:default 0.16 ; - lv2:minimum 0.0 ; - lv2:maximum 1.0 ; - rdfs:comment "Envelope tracking speed - set to minimum to freeze filter shape" - ] , [ - a lv2:InputPort , - lv2:ControlPort ; - lv2:index 5 ; - lv2:name "Filter Q" ; - lv2:symbol "filter_q" ; - lv2:default 0.55 ; - lv2:minimum 0.0 ; - lv2:maximum 1.0 ; - rdfs:comment "Sharpness of each filter band - low values sound more synthetic, high-mid values more vocal" - ] , [ - a lv2:InputPort , - lv2:ControlPort ; - lv2:index 6 ; - lv2:name "Mid Freq" ; - lv2:symbol "mid_freq" ; - lv2:default 0.6667 ; - lv2:minimum 0.0 ; - lv2:maximum 1.0 ; - rdfs:comment "Shift the filter bank up or down to optimize frequency range" - ] , [ - a lv2:InputPort , - lv2:ControlPort ; - lv2:index 7 ; - lv2:name "Quality" ; - lv2:symbol "quality" ; - lv2:default 0.33 ; - lv2:minimum 0.0 ; - lv2:maximum 1.0 ; - rdfs:comment "Select 16-band operation, or 8-band for thinner sound and reduced processor usage" - ] , [ - a lv2:InputPort , - lv2:AudioPort ; - lv2:index 8 ; - lv2:symbol "left_in" ; - lv2:name "Left In" ; - lv2:designation pg:left ; - pg:group mdala:mainIn - ] , [ - a lv2:InputPort , - lv2:AudioPort ; - lv2:index 9 ; - lv2:symbol "right_in" ; - lv2:name "Right In" ; - lv2:designation pg:right ; - pg:group mdala:mainIn - ] , [ - a lv2:OutputPort , - lv2:AudioPort ; - lv2:index 10 ; - lv2:symbol "left_out" ; - lv2:name "Left Out" ; - lv2:designation pg:left ; - pg:group mdala:mainOut - ] , [ - a lv2:OutputPort , - lv2:AudioPort ; - lv2:index 11 ; - lv2:symbol "right_out" ; - lv2:name "Right Out" ; - lv2:designation pg:right ; - pg:group mdala:mainOut - ] . |