Created
November 11, 2015 05:09
-
-
Save kindohm/e310f27e844a9f11e7ea to your computer and use it in GitHub Desktop.
ghost notes in Tidal
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
let ghost'' a f p = superimpose (((a/2 + a*2) ~>) . f) $ superimpose (((a + a/2) ~>) . f) $ p | |
ghost' a p = ghost'' a ((|*| gain "0.7") . (|=| end "0.2") . (|*| speed "1.25")) p | |
ghost p = ghost' 0.125 p | |
cps 0.5 | |
d1 $ ghost $ sound "sd(3,8)" | |
d1 $ ghost' (-0.375) $ sound "sd(3,8)" | |
d1 $ ghost'' (0.125) ((|*| gain "0.7") . (|+| accelerate "-2")) $ sound "bass2(3,8)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment