Created
November 30, 2015 15:31
-
-
Save alcluith/9bea1a4f529ece8f9961 to your computer and use it in GitHub Desktop.
Scotland the Brave - the Inept Club Remix
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
| #Scotland the Brave | |
| #Claire Quigley | |
| #Remix of Martin Goodfellow's code: | |
| #https://github.com/MartinCoderDojo/ScotlandTheBrave | |
| use_bpm 60 | |
| live_loop :brave do | |
| with_fx :echo,phase: 0.5,max_phase: 1, mix: 0.4 do | |
| use_synth :zawa | |
| play 50 | |
| sleep 0.5 | |
| play 50 | |
| sleep 0.375 | |
| play 52 | |
| sleep 0.125 | |
| play 54 | |
| sleep 0.25 | |
| play 50 | |
| sleep 0.25 | |
| play 54 | |
| sleep 0.25 | |
| play 57 | |
| sleep 0.25 | |
| play 62 | |
| sleep 0.5 | |
| play 62 | |
| sleep 0.375 | |
| play 61 | |
| sleep 0.125 | |
| play 62 | |
| sleep 0.25 | |
| play 57 | |
| sleep 0.25 | |
| play 54 | |
| sleep 0.25 | |
| play 50 | |
| sleep 0.25 | |
| play 55 | |
| sleep 0.5 | |
| play 59 | |
| sleep 0.375 | |
| play 55 | |
| sleep 0.125 | |
| play 54 | |
| sleep 0.25 | |
| play 57 | |
| sleep 0.25 | |
| play 54 | |
| sleep 0.25 | |
| play 50 | |
| sleep 0.25 | |
| play 52 | |
| sleep 0.5 | |
| play 57 | |
| sleep 0.375 | |
| play 59 | |
| sleep 0.125 | |
| play 57 | |
| sleep 0.25 | |
| play 55 | |
| sleep 0.25 | |
| play 54 | |
| sleep 0.25 | |
| play 52 | |
| sleep 0.25 | |
| end | |
| end | |
| live_loop :beats do | |
| sample :bd_haus, amp: 2 | |
| sleep 0.5 | |
| end | |
| live_loop :morebeats do | |
| sample :drum_bass_hard, amp: 1.5 if (spread 3, 8).tick | |
| sample :bd_zum, amp: 1.5 if (spread 5, 11).look | |
| sample :drum_snare_hard, rate:-1, amp: 0.75 if (spread 1,9).look | |
| sleep 0.125 | |
| end | |
| live_loop :bass do | |
| stop | |
| sync :morebeats | |
| sample :bass_hit_c, amp: 1 | |
| sleep 2 | |
| end | |
| live_loop :tunish do | |
| with_fx :ixi_techno,cutoff_max: 90, phase_offset:[0,0.5,0.9].choose, amp:1 do | |
| 16.times do | |
| use_synth :fm | |
| use_synth_defaults amp: 1, release: 0.1 | |
| play scale(50,:major_pentatonic).choose | |
| sleep 0.125 | |
| end | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment