Copy/paste and try it: "if spread"

tell me if something is wrong or to improve…Enjoy! :grinning:



use_bpm 98

live_loop :sp do
  use_synth :pluck
  use_random_seed 333
  16.times do
    play scale(40, :minor_pentatonic).tick, amp: 0.5, release: 0.3 if spread(11, 16).tick
    sleep 0.25
  end
end



live_loop :sp2 do
  use_synth :pluck
  use_random_seed 334
  16.times do
    play scale(40, :minor_pentatonic).tick, amp: 0.5,release: 0.3 if spread(6, 16).tick
    sleep 0.25
  end
end


live_loop :sp3 do
  use_synth :bass_foundation
  use_random_seed 335
  16.times do
    play scale(40, :minor_pentatonic).tick, release: 0.3, pan: rrand(-1,1) if spread(6, 16).tick
    sleep 0.25
  end
end

live_loop :note do
  with_fx :reverb, room: 0.9 do
    density 4 do
      use_synth  :pluck
      play [:e4,:g4,:b4,:e5], amp: 0.6 if spread(15,16).tick
      sleep 1
    end
  end
end

live_loop :nappe do
  with_fx :slicer, phase: 0.7 do
    with_fx :reverb, room: 0.9, damp: 0.6 do
      sync :note
      sample :ambi_choir, amp: 2,rpitch: 4, pan: rrand(-1,1), onset: pick
      sleep 8
    end
  end
end

Hi
I like the alternating plucks and bass, but I would use a slow filter sweep on the bass to give it a little interest and separation. I changed the pluck chord opts a little too, to make them slightly more prominent:

myLFO = (range 50, 110, 2).mirror

live_loop :sp3 do
  use_synth :bass_foundation
  use_random_seed 33
  16.times do
    play scale(40, :minor_pentatonic).tick, release: 0.3, cutoff: myLFO.look,
      pan: rrand(-0.6,0.6) if spread(6, 16).tick
    sleep 0.25
  end
end

live_loop :note do
  with_fx :reverb, room: 0.9 do
    density 4 do
      use_synth  :pluck
      play [:e4,:g4,:b4,:e5], amp: 1, coef: 0.1 if spread(11,16).tick
      sleep 1
    end
  end
end

Brendan

Hello Brendan! I tried your patch and thanks for sharing your corrections and ideas! :wink:, it’s great too!

Not corrections at all! Just my opinions. Let us know how this develops :wink:

1 Like

I meant: i tried it and it sounds good too, the line of bass is very cool with the LFO. I keep your suggestion in mind for others projects :wink:

1 Like