Effect High pass filter with Q
Forum rules
This forum is for Audacity on Windows.
Please state which version of Windows you are using,
and the exact three-section version number of Audacity from "Help menu > About Audacity".
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.
Please state which version of Windows you are using,
and the exact three-section version number of Audacity from "Help menu > About Audacity".
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.
Check.
[code]
;nyquist plug-in
;version 1
;type process
;name "High Pass Filter with Q..."
;action "Applying High Pass Filter with Q..."
;info "High Pass Filter with Q by David R. Sky"
;control freq "Cutoff frequency" real "Hz" 50 20 10000
;control q "Filter q (resonance)" real "q" 1.00 0.00 5.00
;; Highpass with Q, works on mono and stereo audio
(if (arrayp s)
(vector (highpass2 (aref s 0) freq q)
(highpass2 (aref s 1) freq q))
(highpass2 s freq q))
[/code]
By the way, why the button "code" doesn't work?
;nyquist plug-in
;version 1
;type process
;name "High Pass Filter with Q..."
;action "Applying High Pass Filter with Q..."
;info "High Pass Filter with Q by David R. Sky"
;control freq "Cutoff frequency" real "Hz" 50 20 10000
;control q "Filter q (resonance)" real "q" 1.00 0.00 5.00
;; Highpass with Q, works on mono and stereo audio
(if (arrayp s)
(vector (highpass2 (aref s 0) freq q)
(highpass2 (aref s 1) freq q))
(highpass2 s freq q))
[/code]
By the way, why the button "code" doesn't work?
Last edited by юра00 on Sun Dec 28, 2014 7:16 pm, edited 4 times in total.
Re: Effect High pass filter with Q
Your editor is not reading the "new lines".юра00 wrote:In my editor it looks:
It is important that new lines are retained in the edited file and that the format remains as "plain text".
I don't use Windows, but when I did, I used "Notpad++" which is a very good (free) plain text editor: http://notepad-plus-plus.org/
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
Re: Effect High pass filter with Q
Thank you very much, the document has been edited successfully, the effect with new values works! Explain, please, how to use the button "code", my attempts failed.
Re: Effect High pass filter with Q
Code: Select all
;nyquist plug-in
;version 1
;type process
;name "High Pass Filter with Q..."
;action "Applying High Pass Filter with Q..."
;info "High Pass Filter with Q by David R. Sky"
;control freq "Cutoff frequency" real "Hz" 50 20 10000
;control q "Filter q (resonance)" real "q" 1.00 0.00 5.00
;; Highpass with Q, works on mono and stereo audio
(if (arrayp s)
(vector (highpass2 (aref s 0) freq q)
(highpass2 (aref s 1) freq q))
(highpass2 s freq q))
Re: Effect High pass filter with Q
That's OK. There are now double line breaks instead of none, but that should work OK.
The author, David R Sky, was blind (sadly he died a few years ago). Many of his plugins have double line spacing, but that should do no harm.
To use "Code" tags, ensure that there is one
[code] tag at the start of the code and one [/code] closing tag at the end.
Your recent posts had:[/code] at the start and
[/code] at the end (which does not work).
Also, ensure that the "Disable BBCode" below the message composing box is not selected.
The author, David R Sky, was blind (sadly he died a few years ago). Many of his plugins have double line spacing, but that should do no harm.
To use "Code" tags, ensure that there is one
[code] tag at the start of the code and one [/code] closing tag at the end.
Your recent posts had:
Code: Select all
[code]Code: Select all
[code]Also, ensure that the "Disable BBCode" below the message composing box is not selected.
Re: Effect High pass filter with Q
Thank you! "Disable BB code" - default the tick is situated, after taking it away the button has been set to rights.