Electronic music experiment

Here is a track I made with Sonic Pi. I hope you like it! Feel free to let me know what you think.

use_bpm 120

live_loop :drums do
  sample :bd_haus, amp: 2
  sleep 0.5
  sample :sn_dub, amp: 1.5, rate: 1.5
  sleep 0.5
end

live_loop :bass, sync: :drums do
  use_synth :tb303
  play :e2, release: 0.3, cutoff: rrand(70, 130), amp: 1.5
  sleep 0.25
  play :e2, release: 0.3, cutoff: rrand(70, 130), amp: 1.5
  sleep 0.25
  play :g2, release: 0.3, cutoff: rrand(70, 130), amp: 1.5
  sleep 0.5
end

live_loop :melody, sync: :drums do
  use_synth :prophet
  play_pattern_timed scale(:e4, :minor_pentatonic).shuffle.take(8), 0.25, release: 0.2, amp: 0.7
  sleep 2
end

2 Likes