Just messing around a bit

Been a lot of ‘Ambient’ posts recently. Which is something that
interests me.

Martins live code… superb. Post the final code up somewhere
please matey, I’d love to twiddle it a bit :slight_smile:

mattholamieux’s 2 tracks… real attention catchers.

So, I thought I’d throw in a 5 minute twiddle, feel free to play
around with it, and post the results back.

Eli…

# Sonar
# Eli...

# Sonar
# Eli...

use_real_time
use_sched_ahead_time 1
set_volume! 4
use_bpm 60

with_fx :hpf, cutoff: 60 do
  with_fx :reverb, room: 1, damp: 0.1 do
    with_fx :flanger, room: 1, damp: 0.1 do
      live_loop :ambience do
        use_sample_defaults pitch: [+24, +12].choose
        tick
        sample :drum_splash_soft, amp: 0.4, rate: [0.65, 1.25].choose, attack: 2, release: 2
        with_fx :reverb, room: 1, damp: 0.1 do
          sample [:elec_blup,:elec_blip2, :elec_blip].choose, 2, rate: (knit -0.2, 2, -0.6, 2, 0.4, 4).look if bools(1, 0, 0, 1).look
        end
        if rand() > 0.55 then
          
          sample :ambi_drone, 1, rate: (ring 0.1, 0.3, -0.25).look, amp: 0.25 if bools(1, 0, 1, 0).look
        end
        sleep [4,2].choose
      end
    end
  end
end

There is no such thing than final code :wink: You know that, don’t you?

Here is what I have. Unfortunately there are external samples involved. I will have to put these somewhere if you want the whole thing. Let me know if this is the case.

1 Like