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
# Coded by Sam Aaron | |
bizet_bass = (ring :d, :r, :r, :a, :f5, :r, :a, :r) | |
#bizet_bass = (ring :d, :r, :r, :Bb, :g5, :r, :Bb, :r) | |
live_loop :bizet do | |
with_fx :reverb, room: 1, mix: 0.3 do | |
with_fx :slicer, phase: 0.125 do | |
synth :blade, note: :d4, release: 8, cutoff: 100, amp: 1.5 | |
end | |
16.times do | |
use_transpose 0 | |
play bizet_bass.tick, release: 0.1 | |
sleep 0.125 | |
end | |
end | |
end | |
live_loop :bizet2 do | |
16.times do | |
use_transpose -24 | |
play bizet_bass.tick, release: 0.1 | |
sleep 0.125 | |
end | |
end | |
live_loop :ind do | |
sample :loop_industrial, beat_stretch: 1, cutoff: 100, rate: 1 | |
sleep 1 | |
end | |
live_loop :drums do | |
sample :bd_haus, cutoff: 110 | |
synth :beep, note: 49, attack: 0, release: 0.1 | |
sleep 0.5 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment