Skip to content

Instantly share code, notes, and snippets.

@pd3v
Last active April 19, 2021 17:02
Show Gist options
  • Save pd3v/0f9b4ab9a13545437cccb9a566d64cfd to your computer and use it in GitHub Desktop.
Save pd3v/0f9b4ab9a13545437cccb9a566d64cfd to your computer and use it in GitHub Desktop.
Simulating a wah effect with TidalCycles
-- with @yaxu and @bgold help
d1 $ n "c5*8" # s "supersquare" # release "0.3"
# bandf (density 3 $ saw1 * (4500 * rand) + (100 * (density 1.0001 rand)))
# bandq "5.5"
# delay "0.9" # delaytime "0.15" # delayfeedback "0.5" -- some sonic sugar
-- this one is similiar to previous one, just adding harmonic richness by replacing one note (c5) with a chord (c5 major 7th)
d1 $ n "[c5,e5,g5,b5]*8" # s "supersquare" # release "0.3"
# bandf (density 3 $ saw1 * (4500 * rand) + (300 * (density 1.0001 rand)))
# bandq "5.5"
# room "0.3" # size "0.3"
@pd3v
Copy link
Author

pd3v commented Mar 21, 2017

Cool! I just changed it based on your thoughts. Added also a chord playing version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment