Skip to content

Instantly share code, notes, and snippets.

@naojitaniguchi
Created May 25, 2019 23:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naojitaniguchi/a4b7c9b50730188aa6735a56e18023d2 to your computer and use it in GitHub Desktop.
Save naojitaniguchi/a4b7c9b50730188aa6735a56e18023d2 to your computer and use it in GitHub Desktop.
Making Scale with speed command by tidal cycles
d1 $ sound "moog:1" |> speed "1"
--2 E flat
d2 $ sound "moog:1" |> speed (1 + (1/12) * 2)
--3 E
d3 $ sound "moog:1" |> speed (1 + (1/12) * 3)
--4 F
d3 $ sound "moog:1" |> speed (1 + (1/12) * 4)
--6 G
d4 $ sound "moog:1" |> speed (1 + (1/12) * 6)
--7 G#
d5 $ sound "moog:1" |> speed (1 + (1/12) * 7)
--8 A
d6 $ sound "moog:1" |> speed (1 + (1/12) * 8)
--9.3 A#
d7 $ sound "moog:1" |> speed (1 + (1/12) * 9.3)
--10.2 B
d8 $ sound "moog:1" |> speed (1 + (1/12) * 10.2)
-- octave
d9 $ sound "moog:1" |> speed "2"
hush
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment