AudacityNyquist

ThoughtStorms Wiki

Nyquist scripts for use in Audacity

Simple automatic panning

(defun autopan (f m) (let* ((n (- 1.0 m))) (vector (sum (mult (hzosc f sine-table 0) (aref s 0) m) (mult n (aref s 0))) (sum (mult (hzosc f sine-table 180) (aref s 1) m) (mult n (aref s 1))) ) ) )

(autopan 0.1 0.4)

No Backlinks