mirror of
https://github.com/cookiengineer/audacity
synced 2025-09-16 16:20:50 +02:00
Disable Debug button for some Nyquist effects
Plug-ins changed: adjustable-fade.ny crossfadetracks.ny highpass.ny limiter.ny lowpass.ny notch.ny tremolo.ny
This commit is contained in:
parent
04ba10a1c3
commit
9c6bfd73ac
@ -6,6 +6,7 @@
|
||||
;categories "http://lv2plug.in/ns/lv2core#MixerPlugin"
|
||||
;name "Adjustable Fade..."
|
||||
;manpage "Adjustable_Fade"
|
||||
;debug false
|
||||
;action "Applying Fade..."
|
||||
;author "Steve Daulton"
|
||||
;copyright "Released under terms of the GNU General Public License version 2"
|
||||
|
@ -3,6 +3,7 @@
|
||||
;type process
|
||||
;name "Crossfade Tracks..."
|
||||
;manpage "Crossfade_Tracks"
|
||||
;debug disabled
|
||||
;action "Crossfading..."
|
||||
;preview selection
|
||||
;author "Steve Daulton"
|
||||
@ -70,4 +71,6 @@ audio clip, fade in, otherwise fade out."
|
||||
(setf out-dist (min out-dist (abs (- end (second (nth i clips)))))))
|
||||
(if (< in-dist out-dist) 'in 'out)))
|
||||
|
||||
(crossfade type direction curve)
|
||||
(if (< (length (get '*selection* 'tracks)) 2)
|
||||
"Error.\nSelect 2 (or more) tracks to crossfade."
|
||||
(crossfade type direction curve))
|
||||
|
@ -4,6 +4,7 @@
|
||||
;preview linear
|
||||
;name "High Pass Filter..."
|
||||
;manpage "High_Pass_Filter"
|
||||
;debug disabled
|
||||
;action "Performing High Pass Filter..."
|
||||
;author "Dominic Mazzoni"
|
||||
;copyright "Released under terms of the GNU General Public License version 2"
|
||||
|
@ -4,6 +4,7 @@
|
||||
;categories "http://lv2plug.in/ns/lv2core/#DynamicsPlugin"
|
||||
;name "Limiter..."
|
||||
;manpage "Limiter"
|
||||
;debug false
|
||||
;action "Limiting..."
|
||||
;preview enabled
|
||||
;author "Steve Daulton"
|
||||
|
@ -4,6 +4,7 @@
|
||||
;preview linear
|
||||
;name "Low Pass Filter..."
|
||||
;manpage "Low_Pass_Filter"
|
||||
;debug disabled
|
||||
;action "Performing Low Pass Filter..."
|
||||
;author "Dominic Mazzoni"
|
||||
;copyright "Released under terms of the GNU General Public License version 2"
|
||||
|
@ -4,6 +4,7 @@
|
||||
;preview linear
|
||||
;name "Notch Filter..."
|
||||
;manpage "Notch_Filter"
|
||||
;debug false
|
||||
;action "Applying Notch Filter..."
|
||||
;author "Steve Daulton and Bill Wharrie"
|
||||
;copyright "Released under terms of the GNU General Public License version 2"
|
||||
|
@ -5,6 +5,7 @@
|
||||
;categories "http://lv2plug.in/ns/lv2core#ModulatorPlugin"
|
||||
;name "Tremolo..."
|
||||
;manpage "Tremolo"
|
||||
;debug disabled
|
||||
;action "Applying Tremolo..."
|
||||
;author "Steve Daulton"
|
||||
;copyright "Released under terms of the GNU General Public License version 2"
|
||||
@ -19,11 +20,8 @@
|
||||
|
||||
;control wave "Waveform type" choice "sine,triangle,sawtooth,inverse sawtooth,square" 0
|
||||
;control phase "Starting phase (degrees)" int "" 0 -180 180
|
||||
;control wet "Wet level (percent)" int "" 40 0 100
|
||||
;control lfo "Frequency (Hz)" real "" 4 0 10
|
||||
|
||||
; Limit to sensible range
|
||||
(setq lfo (min 1000 (max lfo (/ (get-duration 1)))))
|
||||
;control wet "Wet level (percent)" int "" 40 1 100
|
||||
;control lfo "Frequency (Hz)" float-text "" 4 0.001 1000
|
||||
|
||||
; Convert % to linear
|
||||
(setq wet (/ wet 200.0))
|
||||
|
Loading…
x
Reference in New Issue
Block a user