134. talkbox

Talkbox implements a high-resolution vocoder. Instead of using a filterbank, it uses an LPC filter. This is highly tuned for human speech.

src is the source signal, which should be speech.

exc is the excitation or carrier signal, which should be harmonically rich sound source.

q is the qualiy of the talkbox. 0 is lowest fidelity, 1 is highest fidelity.

<<ugens-top>>=
(define (talkbox src exc q)
  (param src)
  (param exc)
  (param q)
  (rvl "talkbox"))



prev | home | next