audacia/plug-ins/notch.ny

30 lines
1015 B
Plaintext
Raw Normal View History

;nyquist plug-in
;version 4
;type process
;preview linear
2018-03-01 19:36:17 +00:00
$name (_"Notch Filter...")
;manpage "Notch_Filter"
;debugbutton false
2018-03-01 19:37:59 +00:00
$action (_"Applying Notch Filter...")
2018-03-01 19:39:44 +00:00
$author (_"Steve Daulton and Bill Wharrie")
2018-03-01 19:40:31 +00:00
$copyright (_"Released under terms of the GNU General Public License version 2")
;; notch.ny by Steve Daulton and Bill Wharrie
;; Released under terms of the GNU General Public License version 2:
;; http://www.gnu.org/licenses/old-licenses/gpl-2.0.html .
2018-03-01 19:44:39 +00:00
$control frequency (_"Frequency (Hz)") float-text "" 60 0 nil
$control q (_"Q (higher value reduces width)") float-text "" 1 0.1 1000
(cond
((< frequency 0.1) "Frequency must be at least 0.1 Hz.")
((>= frequency (/ *sound-srate* 2.0))
(format nil "Error:~%~%Frequency (~a Hz) is too high for track sample rate.~%~%~
Track sample rate is ~a Hz.~%~
Frequency must be less than ~a Hz."
frequency
*sound-srate*
(/ *sound-srate* 2.0)))
(T (notch2 *track* frequency q)))