packages feed

hsc3-0.21: Help/Ugen/neoFormant.help.hs

-- neoFormant
let modulator = sinOsc kr 0.1 0
    formantfreq = 150
    carrierfreq = lfNoise2Id 'α' kr 10 `in_exprange` (100,550)
    phaseshift = modulator `in_range` (0,1)
    sig = X.neoFormant ar formantfreq carrierfreq phaseshift
in pan2 sig modulator 0.1

-- neoFormant ; event control
let f (_,g,x,y,z,o,rx,_,_,_,_) =
      let carrierFreq = midiCps (x * 13 + 36)
          formantFreq = y `in_exprange` (100,550)
          phaseShift = lag rx 0.5 * 2
      in pan2 (X.neoFormant ar formantFreq carrierFreq phaseShift) (o * 2 - 1) (lagUD (z * g) 0 0.2)
in mix (voicer 16 f) * control kr "gain" 0.2