mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-11 09:03:36 +02:00
Update Nyquist to v3.09.
This commit is contained in:
24
nyquist/velocity.lsp
Normal file
24
nyquist/velocity.lsp
Normal file
@@ -0,0 +1,24 @@
|
||||
;; velocity.lsp -- conversion routines for MIDI velocity
|
||||
;;
|
||||
;; Roger B. Dannenberg
|
||||
;; July, 2012
|
||||
|
||||
|
||||
(defun db-to-vel (x &optional float)
|
||||
(linear-to-vel (db-to-linear x) float))
|
||||
|
||||
|
||||
(defun linear-to-vel (x &optional float)
|
||||
(setf x (/ (- (sqrt (abs x)) 0.0239372) 0.00768553))
|
||||
(cond (float x)
|
||||
(t
|
||||
(setf x (round x))
|
||||
(max 1 (min 127 x)))))
|
||||
|
||||
|
||||
(defun vel-to-db (v)
|
||||
(linear-to-db (vel-to-linear v)))
|
||||
|
||||
|
||||
(defun vel-to-linear (v)
|
||||
(power (+ (* v 0.00768553) 0.0239372) 2))
|
Reference in New Issue
Block a user