Skip to content

Instantly share code, notes, and snippets.

@samaaron
Created September 3, 2015 16:36
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
# 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