1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-12 15:45:54 +01: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:
Steve Daulton
2017-05-22 12:59:39 +01:00
parent 04ba10a1c3
commit 9c6bfd73ac
7 changed files with 12 additions and 6 deletions

View File

@@ -6,6 +6,7 @@
;categories "http://lv2plug.in/ns/lv2core#MixerPlugin" ;categories "http://lv2plug.in/ns/lv2core#MixerPlugin"
;name "Adjustable Fade..." ;name "Adjustable Fade..."
;manpage "Adjustable_Fade" ;manpage "Adjustable_Fade"
;debug false
;action "Applying Fade..." ;action "Applying Fade..."
;author "Steve Daulton" ;author "Steve Daulton"
;copyright "Released under terms of the GNU General Public License version 2" ;copyright "Released under terms of the GNU General Public License version 2"

View File

@@ -3,6 +3,7 @@
;type process ;type process
;name "Crossfade Tracks..." ;name "Crossfade Tracks..."
;manpage "Crossfade_Tracks" ;manpage "Crossfade_Tracks"
;debug disabled
;action "Crossfading..." ;action "Crossfading..."
;preview selection ;preview selection
;author "Steve Daulton" ;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))))))) (setf out-dist (min out-dist (abs (- end (second (nth i clips)))))))
(if (< in-dist out-dist) 'in 'out))) (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))

View File

@@ -4,6 +4,7 @@
;preview linear ;preview linear
;name "High Pass Filter..." ;name "High Pass Filter..."
;manpage "High_Pass_Filter" ;manpage "High_Pass_Filter"
;debug disabled
;action "Performing High Pass Filter..." ;action "Performing High Pass Filter..."
;author "Dominic Mazzoni" ;author "Dominic Mazzoni"
;copyright "Released under terms of the GNU General Public License version 2" ;copyright "Released under terms of the GNU General Public License version 2"

View File

@@ -4,6 +4,7 @@
;categories "http://lv2plug.in/ns/lv2core/#DynamicsPlugin" ;categories "http://lv2plug.in/ns/lv2core/#DynamicsPlugin"
;name "Limiter..." ;name "Limiter..."
;manpage "Limiter" ;manpage "Limiter"
;debug false
;action "Limiting..." ;action "Limiting..."
;preview enabled ;preview enabled
;author "Steve Daulton" ;author "Steve Daulton"

View File

@@ -4,6 +4,7 @@
;preview linear ;preview linear
;name "Low Pass Filter..." ;name "Low Pass Filter..."
;manpage "Low_Pass_Filter" ;manpage "Low_Pass_Filter"
;debug disabled
;action "Performing Low Pass Filter..." ;action "Performing Low Pass Filter..."
;author "Dominic Mazzoni" ;author "Dominic Mazzoni"
;copyright "Released under terms of the GNU General Public License version 2" ;copyright "Released under terms of the GNU General Public License version 2"

View File

@@ -4,6 +4,7 @@
;preview linear ;preview linear
;name "Notch Filter..." ;name "Notch Filter..."
;manpage "Notch_Filter" ;manpage "Notch_Filter"
;debug false
;action "Applying Notch Filter..." ;action "Applying Notch Filter..."
;author "Steve Daulton and Bill Wharrie" ;author "Steve Daulton and Bill Wharrie"
;copyright "Released under terms of the GNU General Public License version 2" ;copyright "Released under terms of the GNU General Public License version 2"

View File

@@ -5,6 +5,7 @@
;categories "http://lv2plug.in/ns/lv2core#ModulatorPlugin" ;categories "http://lv2plug.in/ns/lv2core#ModulatorPlugin"
;name "Tremolo..." ;name "Tremolo..."
;manpage "Tremolo" ;manpage "Tremolo"
;debug disabled
;action "Applying Tremolo..." ;action "Applying Tremolo..."
;author "Steve Daulton" ;author "Steve Daulton"
;copyright "Released under terms of the GNU General Public License version 2" ;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 wave "Waveform type" choice "sine,triangle,sawtooth,inverse sawtooth,square" 0
;control phase "Starting phase (degrees)" int "" 0 -180 180 ;control phase "Starting phase (degrees)" int "" 0 -180 180
;control wet "Wet level (percent)" int "" 40 0 100 ;control wet "Wet level (percent)" int "" 40 1 100
;control lfo "Frequency (Hz)" real "" 4 0 10 ;control lfo "Frequency (Hz)" float-text "" 4 0.001 1000
; Limit to sensible range
(setq lfo (min 1000 (max lfo (/ (get-duration 1)))))
; Convert % to linear ; Convert % to linear
(setq wet (/ wet 200.0)) (setq wet (/ wet 200.0))