diff options
author | David Robillard <d@drobilla.net> | 2012-04-21 20:37:31 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-04-21 20:37:31 +0000 |
commit | 45a8dff2631c32677cc54d49d5e697a9b209288b (patch) | |
tree | 83ccb6522c46c84f0b7e93820fc3ca651c20d956 /mda.lv2/Detune-presets.ttl | |
parent | 5fde36cdaee35b206e0a79396da59536182469e2 (diff) | |
download | mda.lv2-45a8dff2631c32677cc54d49d5e697a9b209288b.tar.gz mda.lv2-45a8dff2631c32677cc54d49d5e697a9b209288b.tar.bz2 mda.lv2-45a8dff2631c32677cc54d49d5e697a9b209288b.zip |
Add presets.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/mda.lv2@4219 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'mda.lv2/Detune-presets.ttl')
-rw-r--r-- | mda.lv2/Detune-presets.ttl | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/mda.lv2/Detune-presets.ttl b/mda.lv2/Detune-presets.ttl new file mode 100644 index 0000000..c069f1a --- /dev/null +++ b/mda.lv2/Detune-presets.ttl @@ -0,0 +1,57 @@ +@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#Detune-stereo-detune> + a pset:Preset ; + lv2:appliesTo <http://drobilla.net/plugins/mda/Detune> ; + rdfs:label "Stereo Detune" ; + lv2:port [ + lv2:symbol "detune" ; + pset:value 0.2 + ] , [ + lv2:symbol "mix" ; + pset:value 0.9 + ] , [ + lv2:symbol "output" ; + pset:value 0.5 + ] , [ + lv2:symbol "latency" ; + pset:value 0.5 + ] . + +<http://drobilla.net/plugins/mda/presets#Detune-symphonic> + a pset:Preset ; + lv2:appliesTo <http://drobilla.net/plugins/mda/Detune> ; + rdfs:label "Symphonic" ; + lv2:port [ + lv2:symbol "detune" ; + pset:value 0.2 + ] , [ + lv2:symbol "mix" ; + pset:value 0.9 + ] , [ + lv2:symbol "output" ; + pset:value 0.5 + ] , [ + lv2:symbol "latency" ; + pset:value 0.5 + ] . + +<http://drobilla.net/plugins/mda/presets#Detune-out-of-tune> + a pset:Preset ; + lv2:appliesTo <http://drobilla.net/plugins/mda/Detune> ; + rdfs:label "Out Of Tune" ; + lv2:port [ + lv2:symbol "detune" ; + pset:value 0.8 + ] , [ + lv2:symbol "mix" ; + pset:value 0.7 + ] , [ + lv2:symbol "output" ; + pset:value 0.5 + ] , [ + lv2:symbol "latency" ; + pset:value 0.5 + ] . |