diff options
author | David Robillard <d@drobilla.net> | 2012-04-21 22:35:41 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-04-21 22:35:41 +0000 |
commit | 337a13119180bf7fa6996d6c23962c31ea53db54 (patch) | |
tree | 7427f9be36a29978712c17399f7418e8f9d18425 /mda.lv2/Vocoder-presets.ttl | |
parent | 3ff557d9e3ea5b36f0ca6eccfc587dc335ed5e8d (diff) | |
download | mda.lv2-1.0.0.tar.gz mda.lv2-1.0.0.tar.bz2 mda.lv2-1.0.0.zip |
MDA-LV2 1.0.0v1.0.0
git-svn-id: http://svn.drobilla.net/lad/tags/mda-lv2-1.0.0@4223 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'mda.lv2/Vocoder-presets.ttl')
-rw-r--r-- | mda.lv2/Vocoder-presets.ttl | 153 |
1 files changed, 153 insertions, 0 deletions
diff --git a/mda.lv2/Vocoder-presets.ttl b/mda.lv2/Vocoder-presets.ttl new file mode 100644 index 0000000..2d91c3e --- /dev/null +++ b/mda.lv2/Vocoder-presets.ttl @@ -0,0 +1,153 @@ +@prefix lv2: <http://lv2plug.in/ns/lv2core#> . +@prefix pset: <http://lv2plug.in/ns/ext/presets#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . + +<http://drobilla.net/plugins/mda/presets#Vocoder-default> + a pset:Preset ; + lv2:appliesTo <http://drobilla.net/plugins/mda/Vocoder> ; + rdfs:label "Default" ; + lv2:port [ + lv2:symbol "mod_in" ; + pset:value 0.0 + ] , [ + lv2:symbol "output" ; + pset:value 0.5 + ] , [ + lv2:symbol "hi_thru" ; + pset:value 0.4 + ] , [ + lv2:symbol "hi_band" ; + pset:value 0.4 + ] , [ + lv2:symbol "envelope" ; + pset:value 0.16 + ] , [ + lv2:symbol "filter_q" ; + pset:value 0.55 + ] , [ + lv2:symbol "mid_freq" ; + pset:value 0.6667 + ] , [ + lv2:symbol "quality" ; + pset:value 0.0 + ] . + +<http://drobilla.net/plugins/mda/presets#Vocoder-16-band-vocoder> + a pset:Preset ; + lv2:appliesTo <http://drobilla.net/plugins/mda/Vocoder> ; + rdfs:label "16 Band Vocoder" ; + lv2:port [ + lv2:symbol "mod_in" ; + pset:value 0.0 + ] , [ + lv2:symbol "output" ; + pset:value 0.5 + ] , [ + lv2:symbol "hi_thru" ; + pset:value 0.4 + ] , [ + lv2:symbol "hi_band" ; + pset:value 0.4 + ] , [ + lv2:symbol "envelope" ; + pset:value 0.16 + ] , [ + lv2:symbol "filter_q" ; + pset:value 0.55 + ] , [ + lv2:symbol "mid_freq" ; + pset:value 0.6667 + ] , [ + lv2:symbol "quality" ; + pset:value 1.0 + ] . + +<http://drobilla.net/plugins/mda/presets#Vocoder-old-vocoder> + a pset:Preset ; + lv2:appliesTo <http://drobilla.net/plugins/mda/Vocoder> ; + rdfs:label "Old Vocoder" ; + lv2:port [ + lv2:symbol "mod_in" ; + pset:value 0.0 + ] , [ + lv2:symbol "output" ; + pset:value 0.5 + ] , [ + lv2:symbol "hi_thru" ; + pset:value 0.0 + ] , [ + lv2:symbol "hi_band" ; + pset:value 0.0 + ] , [ + lv2:symbol "envelope" ; + pset:value 0.16 + ] , [ + lv2:symbol "filter_q" ; + pset:value 0.55 + ] , [ + lv2:symbol "mid_freq" ; + pset:value 0.5 + ] , [ + lv2:symbol "quality" ; + pset:value 0.0 + ] . + +<http://drobilla.net/plugins/mda/presets#Vocoder-choral-vocoder> + a pset:Preset ; + lv2:appliesTo <http://drobilla.net/plugins/mda/Vocoder> ; + rdfs:label "Choral Vocoder" ; + lv2:port [ + lv2:symbol "mod_in" ; + pset:value 0.0 + ] , [ + lv2:symbol "output" ; + pset:value 0.5 + ] , [ + lv2:symbol "hi_thru" ; + pset:value 0.4 + ] , [ + lv2:symbol "hi_band" ; + pset:value 0.0 + ] , [ + lv2:symbol "envelope" ; + pset:value 0.16 + ] , [ + lv2:symbol "filter_q" ; + pset:value 0.7 + ] , [ + lv2:symbol "mid_freq" ; + pset:value 0.5 + ] , [ + lv2:symbol "quality" ; + pset:value 0.0 + ] . + +<http://drobilla.net/plugins/mda/presets#Vocoder-pad-vocoder> + a pset:Preset ; + lv2:appliesTo <http://drobilla.net/plugins/mda/Vocoder> ; + rdfs:label "Pad Vocoder" ; + lv2:port [ + lv2:symbol "mod_in" ; + pset:value 0.0 + ] , [ + lv2:symbol "output" ; + pset:value 0.5 + ] , [ + lv2:symbol "hi_thru" ; + pset:value 0.4 + ] , [ + lv2:symbol "hi_band" ; + pset:value 0.4 + ] , [ + lv2:symbol "envelope" ; + pset:value 0.78 + ] , [ + lv2:symbol "filter_q" ; + pset:value 0.55 + ] , [ + lv2:symbol "mid_freq" ; + pset:value 0.3 + ] , [ + lv2:symbol "quality" ; + pset:value 0.0 + ] . |