mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-22 11:08:35 +00:00
add vib examples for : notation
This commit is contained in:
parent
32fee6313b
commit
0e7c9a4001
@ -649,10 +649,14 @@ const generic_params = [
|
|||||||
* @example
|
* @example
|
||||||
* note("a")
|
* note("a")
|
||||||
* .vib("<.5 1 2 4 8 16>")
|
* .vib("<.5 1 2 4 8 16>")
|
||||||
|
* @example
|
||||||
|
* // change the modulation depth with ":"
|
||||||
|
* note("a")
|
||||||
|
* .vib("<.5 1 2 4 8 16>:12")
|
||||||
*/
|
*/
|
||||||
[['vib', 'vibmod'], 'vibrato', 'v'],
|
[['vib', 'vibmod'], 'vibrato', 'v'],
|
||||||
/**
|
/**
|
||||||
* Sets the vibrato depth in semitones.
|
* Sets the vibrato depth in semitones. Only has an effect if `vibrato` | `vib` | `v` is is also set
|
||||||
*
|
*
|
||||||
* @name vibmod
|
* @name vibmod
|
||||||
* @synonyms vmod
|
* @synonyms vmod
|
||||||
@ -660,6 +664,10 @@ const generic_params = [
|
|||||||
* @example
|
* @example
|
||||||
* note("a").vib(4)
|
* note("a").vib(4)
|
||||||
* .vibmod("<.25 .5 1 2 12>")
|
* .vibmod("<.25 .5 1 2 12>")
|
||||||
|
* @example
|
||||||
|
* // change the vibrato frequency with ":"
|
||||||
|
* note("a")
|
||||||
|
* .vibmod("<.25 .5 1 2 12>:8")
|
||||||
*/
|
*/
|
||||||
[['vibmod', 'vib'], 'vmod'],
|
[['vibmod', 'vib'], 'vmod'],
|
||||||
[['hcutoff', 'hresonance'], 'hpf', 'hp'],
|
[['hcutoff', 'hresonance'], 'hpf', 'hp'],
|
||||||
|
|||||||
@ -4767,6 +4767,15 @@ exports[`runs examples > example "vib" example index 0 1`] = `
|
|||||||
]
|
]
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
exports[`runs examples > example "vib" example index 1 1`] = `
|
||||||
|
[
|
||||||
|
"[ 0/1 → 1/1 | note:a vib:0.5 vibmod:12 ]",
|
||||||
|
"[ 1/1 → 2/1 | note:a vib:1 vibmod:12 ]",
|
||||||
|
"[ 2/1 → 3/1 | note:a vib:2 vibmod:12 ]",
|
||||||
|
"[ 3/1 → 4/1 | note:a vib:4 vibmod:12 ]",
|
||||||
|
]
|
||||||
|
`;
|
||||||
|
|
||||||
exports[`runs examples > example "vibmod" example index 0 1`] = `
|
exports[`runs examples > example "vibmod" example index 0 1`] = `
|
||||||
[
|
[
|
||||||
"[ 0/1 → 1/1 | note:a vib:4 vibmod:0.25 ]",
|
"[ 0/1 → 1/1 | note:a vib:4 vibmod:0.25 ]",
|
||||||
@ -4776,6 +4785,15 @@ exports[`runs examples > example "vibmod" example index 0 1`] = `
|
|||||||
]
|
]
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
exports[`runs examples > example "vibmod" example index 1 1`] = `
|
||||||
|
[
|
||||||
|
"[ 0/1 → 1/1 | note:a vibmod:0.25 vib:8 ]",
|
||||||
|
"[ 1/1 → 2/1 | note:a vibmod:0.5 vib:8 ]",
|
||||||
|
"[ 2/1 → 3/1 | note:a vibmod:1 vib:8 ]",
|
||||||
|
"[ 3/1 → 4/1 | note:a vibmod:2 vib:8 ]",
|
||||||
|
]
|
||||||
|
`;
|
||||||
|
|
||||||
exports[`runs examples > example "voicing" example index 0 1`] = `
|
exports[`runs examples > example "voicing" example index 0 1`] = `
|
||||||
[
|
[
|
||||||
"[ 0/1 → 1/1 | note:E4 ]",
|
"[ 0/1 → 1/1 | note:E4 ]",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user