Created
May 21, 2017 17:30
-
-
Save rubentr/b6ded7a5a06a299a83cced8098953a4e to your computer and use it in GitHub Desktop.
La Palma (Madrid) Live Coding event 15-05-17
This file contains hidden or 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
| use_bpm 120 | |
| use_debug false | |
| vol=(ramp * (line 0,1,steps:11)) | |
| k=(knit 0.2,1,0.4,2,0.5,4) | |
| live_loop :clock do | |
| sleep 0.125 | |
| end | |
| live_loop :beat, sync: :clock do | |
| sample ibeats,35, amp: 2.5, pan: -0.5 | |
| sample ibeats,34, amp: 2.5, pan: 0.5 | |
| with_fx :reverb, mix: 0.2 do | |
| with_fx :wobble, mix: 0.6 do | |
| sample iperc, 1, amp: 2, pan: 0.5 | |
| sample iperc, 0, amp: 2, pan: -0.5 | |
| sample iperc, 3, amp: 2, pan: 1 | |
| end | |
| end | |
| at 64 do | |
| with_fx :reverb, mix: 0.3 do | |
| with_fx :echo, mix: 0.5 do | |
| with_fx :ixi_techno, mix: 0.8, pan: [-0.5,0.5].choose do | |
| #sample ibass,[6,5].choose, cutoff:(line 90,120,steps:20).mirror.tick | |
| end | |
| end | |
| end | |
| end | |
| sleep 8 | |
| end | |
| live_loop :pad, sync: :clock do | |
| #stop | |
| sample ipad, (ring 5,6,7,8,9).tick, amp: vol.look | |
| #sample ipsync, 1, amp: vol.look | |
| sleep 8 | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment