Last active
January 18, 2019 23:17
-
-
Save err0r500/f3f196951b74cc765e02ee3254147eb0 to your computer and use it in GitHub Desktop.
tidal patch made during Creative Code Paris - Code Kitchen #3 listen : https://soundcloud.com/err0r_500/creative-code-paris-code-kitchen-3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
do | |
let mG = 1 | |
let s1G = 0.8 | |
let s2G = 0.6 | |
let s3G = 0.8 | |
let s1Striation = 50 | |
let s3Striation = 250 | |
let s1 = every 4 rev | |
$ every 2 (spread fast [2, 3, 1, 2] ) | |
$ every 3 (# speed 4) | |
$ striate (round <$> (slow 5 sine * s1Striation)) | |
$ randcat [sound "tabla bottle:2" | |
, sound "bd [bd, tabla, tabla] bd" | |
, sound "bottle ~ bottle:4 ~ bottle:3"] | |
# fast 2 (pan sine) | |
# gain (s1G * "<1 0.8 0.6 0.7>") | |
# delay sine | |
# hpq "0.4 0.8" | |
# orbit 0 | |
let s2 = degradeBy (slow 2 cosine) | |
$ juxBy sine (fast( saw * 2)) | |
$ fast 4 | |
$ randslice 1 | |
$ sound "outdoor" | |
# n "<1 2>" | |
# gain (slow 5 saw * s2G * mG) | |
# room "0 1 0.25 0.75" # size 3.5 | |
# orbit 1 | |
let s3 = slow 2 <$> striate (round <$> (saw * slow 2 sine * s3Striation)) | |
$ fast 1 | |
$ sound "jazz breath" | |
# lpf ("1000" * slow 4 saw + 1000) * slow 2 sine | |
# gain (mG * s3G) | |
# orbit 0 | |
d1 $ stack [s1, s2, s3] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment