Downloading ACX Check from Audacity 3.0 in Windows 10

Help for Audacity on Windows.
Forum rules
ImageThis forum is for Audacity on Windows.
Please state which version of Windows you are using,
and the exact three-section version number of Audacity from "Help menu > About Audacity".


Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.
Post Reply
mike.aiken
Posts: 1
Joined: Sat Mar 27, 2021 5:57 am
Operating System: Windows 10

Downloading ACX Check from Audacity 3.0 in Windows 10

Post by mike.aiken » Sat Mar 27, 2021 6:11 am

Link isn't working for me. I'm just seeing code

;nyquist plug-in
;version 4
;type analyze
;name "ACX Check"
;maxlen 2143260000
;debugflags trace
;author "Steve Daulton"
;release 2.4.2-1
;copyright "Released under terms of the GNU General Public License version 2"


(defun getfloor ()
;; Calculate RMS where rate=10 Hz, window-size=0.4 seconds.
;; Return the lowest 0.4 to 0.5 s in the selection.
(let ((floor 999)
(window-size (round (* 0.4 *sound-srate*)))
samples)
(setf *track* (s-rms *track* 10 window-size))
;; Calculate new length in samples without retaining samples in RAM.
(setf samples (truncate (* len (/ (snd-srate *track*) *sound-srate*))))
(do ((val (snd-fetch *track*) (snd-fetch *track*))
(count samples (1- count)))
((< count 4) floor) ;stop at last full window.
(setf floor (min floor val))))) :roll:

steve
Site Admin
Posts: 80677
Joined: Sat Dec 01, 2007 11:43 am
Operating System: Linux *buntu

Re: Downloading ACX Check from Audacity 3.0 in Windows 10

Post by steve » Sat Mar 27, 2021 9:29 am

mike.aiken wrote:
Sat Mar 27, 2021 6:11 am
Link isn't working for me. I'm just seeing code
Save that page.
To do that in Firefox:
1. Press "Alt" to make the Firefox menus appear.
2. "File menu > Save Page As..."
The default file name is the correct name.
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)

Post Reply