16 lines
370 B
Scheme
16 lines
370 B
Scheme
|
;; (pv-mag-noise buffer)
|
||
|
|
||
|
;; Magnitudes are multiplied with noise.
|
||
|
|
||
|
;; buffer - fft buffer.
|
||
|
|
||
|
(with-sc3
|
||
|
(lambda (fd)
|
||
|
(async fd (b-alloc 10 2048 1))
|
||
|
(async fd (b-alloc-read 12 "/home/rohan/audio/metal.wav" 0 0))))
|
||
|
|
||
|
(let* ((a (play-buf 1 12 (buf-rate-scale kr 12) 0 0 1))
|
||
|
(f (fft* 10 a))
|
||
|
(h (pv-mag-noise f)))
|
||
|
(audition (out 0 (mul (ifft* h) 0.5))))
|