A reasonable flute?

I contiue to work towards more instruments… although
not perfect, I think this is getting close.

Eli…

use_bpm 80
set_volume! 1

use_random_seed 242424
set_volume! 5

flute = (ring 76, 74, 80, 76, 76, 80, 74, 78)

with_fx :lpf, cutoff: 40, res: 0.05 do
  with_fx :hpf, cutoff: 60, res: 0.05 do
    live_loop :flute do
      use_bpm 10
      with_synth :pulse do
        use_transpose +0
        use_synth_defaults attack: 0.125, sustain: 0.3, release: 0.04
        play flute.tick, amp: 3
        sleep 0.1
        #add a little tremor in the note
        play flute.look, amp: 2.5, sustain: rand(0.2) if (spread 3, 8)
      end
      sleep 0.3
    end
  end
end

Hi Eli,

sounds quite nice. For sound synthesis I found the article series SOS Synth Secrets pretty nice.
For the flute there is e.g. this article https://www.soundonsound.com/techniques/synthesizing-simple-flutes
Maybe you already read it :slight_smile:

Cu.

1 Like