Skip to content

Instantly share code, notes, and snippets.

@andycroll
Created February 16, 2017 21:40
Show Gist options
  • Save andycroll/3fea464bee391f68cee3727b6d71c702 to your computer and use it in GitHub Desktop.
Save andycroll/3fea464bee391f68cee3727b6d71c702 to your computer and use it in GitHub Desktop.
Potential Pod Sounds
# Intro
with_fx :reverb, mix: 0.2 do
16.times do
play scale(:Eb2, :blues_major, num_octaves: 3).choose, release: 0.1, amp: rand
sleep 0.1
end
end
sleep 1
# Interstitials
with_fx :reverb, mix: 0.2 do
8.times do
play scale(:Eb2, :blues_major, num_octaves: 3).choose, release: 0.1, amp: rand
sleep 0.1
end
end
sleep 1
with_fx :reverb, mix: 0.2 do
8.times do
play scale(:Eb2, :blues_major, num_octaves: 3).choose, release: 0.1, amp: rand
sleep 0.12
end
end
sleep 1
# A bit of a harsher sound
use_synth :tb303
play 38
sleep 0.25
use_synth :dsaw
play 50
sleep 0.25
use_synth :blade
play 57
sleep 0.25
use_synth :saw
play 50
sleep 0.25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment