1
0
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:
Leland Lucius
2015-04-07 22:10:17 -05:00
parent f88b27e6d8
commit 9fb0ce5b82
358 changed files with 26327 additions and 7043 deletions

24
nyquist/velocity.lsp Normal file
View 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))