mirror of
https://github.com/cookiengineer/audacity
synced 2026-04-25 15:34:10 +02:00
Spectral selection effects now prompt for missing frequency fields when used in time selection mode.
This commit is contained in:
@@ -4,6 +4,9 @@
|
||||
;name "Spectral edit multi tool"
|
||||
;action "Calculating..."
|
||||
|
||||
;control control-f0 "Low Frequency" real "" 4000 0 20000
|
||||
;control control-f1 "High Frequency" real "" 4000 0 20000
|
||||
|
||||
(defun wet (sig)
|
||||
(cond
|
||||
((not (or *f0* *f1*)) (throw 'error-message "Please select frequencies"))
|
||||
|
||||
@@ -5,7 +5,8 @@
|
||||
;action "Calculating..."
|
||||
|
||||
;control control-gain "Gain (dB)" real "" 0 -24 24
|
||||
|
||||
;control control-f0 "Low Frequency" real "" 4000 0 20000
|
||||
;control control-f1 "High Frequency" real "" 4000 0 20000
|
||||
|
||||
(defun wet (sig gain)
|
||||
(cond
|
||||
|
||||
@@ -5,6 +5,8 @@
|
||||
;action "Calculating..."
|
||||
|
||||
;control control-gain "Gain (dB)" real "" 0 -24 24
|
||||
;control control-f0 "Low Frequency" real "" 4000 0 20000
|
||||
;control control-f1 "High Frequency" real "" 4000 0 20000
|
||||
|
||||
(defun mid-shelf (sig lf hf gain)
|
||||
"Combines high shelf and low shelf filters"
|
||||
|
||||
Reference in New Issue
Block a user