My first ambient track using Sonic Pi

Hi to all! I started playing around with Sonic Pi and after some days of trying and tweaking here is my first (and very basic) ambient song (and my first song in general).
I know it’s very simple and naive, so suggestions are very appreciated :slight_smile:

# First Ambient track on Sonic Pi

live_loop :note1 do
  use_synth :prophet
  with_fx :distortion do
    with_fx :flanger do
      with_fx :echo do
        play choose([:e2, :f2]), attack: 2, sustain: 4, release: 2, cutoff: rrand(60, 100),amp: 0.2
      end
    end
  end
  sleep 4
end

live_loop :highnotes do
  use_synth :bnoise
  with_fx :ring_mod do
    with_fx :ping_pong do
      play (scale(:e, :minor)).choose, cutoff: 80, attack: 0.5, sustain: 1, release: 0.6, amp: 0.7
    end
  end
  sleep 2
end

live_loop :percussions do
  with_fx :echo do
    with_fx :reverb do
      sample :drum_heavy_kick, amp: 2, rate: -1
    end
  end
  sync :bassnote
end

live_loop :percussions2 do
  with_fx :echo do
    with_fx :distortion do
      sample :drum_snare_soft, amp: 0.5, rate: 0.5
    end
  end
  sleep 2
end

live_loop :bassnote do
  sample :ambi_dark_woosh, sustain: 8, release: 4, amp: 2, rate: 0.8
  sleep 2
end






1 Like