A snippet inspired from Sam Aaron "Tillburg2"

An extract from Tillburg2 with a new harmonization and some changes…Thanks for hearing!! :grinning:

in_thread do
  with_fx :reverb, room: 1 do
    live_loop :lands, auto_cue: false do
      use_synth :dsaw
      use_random_seed 310003
      ns = (scale :e2, :minor, num_octaves: 4).take(4)
      16.times do
        play ns.choose, detune: 7, release: 0.1, amp: 2, amp: rand + 0.5, cutoff: rrand(70, 120), amp: 1.5
        play ns.choose, detune: 24, release: 0.1, amp: 2, amp: rand + 0.5, cutoff: rrand(70, 120), amp: 1.5
        play ns.choose, detune: 36, release: 0.1, amp: 2, amp: rand + 0.5, cutoff: rrand(70, 120), amp: 0.5
        sleep 1
      end
    end
  end
  
  with_fx :reverb, room: 0.3 do
    live_loop :lands, auto_cue: false do
      use_synth :dsaw
      use_random_seed 310003
      ns = (scale :c2, :minor_pentatonic, num_octaves: 4).take(4)
      16.times do
        play ns.choose, detune: 7, release: 0.1, amp: 2, amp: rand + 0.5, cutoff: rrand(70, 120), amp: 2
        play ns.choose, detune: 24, release: 0.1, amp: 2, amp: rand + 0.5, cutoff: rrand(70, 120), amp: 2
        play ns.choose, detune: 36, release: 0.1, amp: 2, amp: rand + 0.5, cutoff: rrand(70, 120), amp: 1.5
        sleep 1
      end
    end
  end
end


live_loop :tijd do
  sample :bd_haus, amp: 2.5, cutoff: 100
  sleep 0.5
end

live_loop :ind do
  sample :loop_industrial, beat_stretch: 0.5
  sleep 1
end

1 Like