mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-27 15:50:10 +01:00
Update Nyquist plug-in headers
Mostly consistency updates, plus a couple of minor fixes. Line breaks in translated control text strings do not work, so have been removed. Obsolete ";categories" commands removed, and ";info" commands replaced with standard Lisp comments.
This commit is contained in:
@@ -1,17 +1,20 @@
|
||||
;nyquist plug-in
|
||||
;version 1
|
||||
;type analyze
|
||||
;categories "https://audacityteam.org/namespace#OnsetDetector"
|
||||
$name (_"Beat Finder")
|
||||
;manpage "Beat_Finder"
|
||||
$action (_"Finding beats...")
|
||||
$author (_"Audacity")
|
||||
$copyright (_"Released under terms of the GNU General Public License version 2")
|
||||
$nyquist plug-in
|
||||
$version 1
|
||||
$type analyze
|
||||
$name (_ "Beat Finder")
|
||||
$manpage "Beat_Finder"
|
||||
$action (_ "Finding beats...")
|
||||
$author (_ "Audacity")
|
||||
$copyright (_ "Released under terms of the GNU General Public License version 2")
|
||||
|
||||
;; Released under terms of the GNU General Public License version 2:
|
||||
;; http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
||||
;; http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
||||
;;
|
||||
;; For information about writing and modifying Nyquist plug-ins:
|
||||
;; https://wiki.audacityteam.org/wiki/Nyquist_Plug-ins_Reference
|
||||
|
||||
$control thresval (_"Threshold Percentage") int "" 65 5 100
|
||||
|
||||
$control thresval (_ "Threshold Percentage") int "" 65 5 100
|
||||
(setf s1 (if (arrayp s) (snd-add (aref s 0) (aref s 1)) s))
|
||||
(defun signal () (force-srate 1000 (lp (snd-follow (lp s1 50) 0.001 0.01 0.1 512) 10)))
|
||||
(setq max (peak (signal) NY:ALL))
|
||||
|
||||
Reference in New Issue
Block a user