Effect High pass filter with Q

Help for Audacity on Windows.
Forum rules
ImageThis 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.
юра00
Posts: 886
Joined: Mon Jan 21, 2013 11:26 am
Operating System: Windows 10

Check.

Post by юра00 » Sun Dec 28, 2014 6:23 pm

[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?
Last edited by юра00 on Sun Dec 28, 2014 7:16 pm, edited 4 times in total.

steve
Site Admin
Posts: 81627
Joined: Sat Dec 01, 2007 11:43 am
Operating System: Linux *buntu

Re: Effect High pass filter with Q

Post by steve » Sun Dec 28, 2014 6:43 pm

юра00 wrote:In my editor it looks:
Your editor is not reading the "new lines".

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)

юра00
Posts: 886
Joined: Mon Jan 21, 2013 11:26 am
Operating System: Windows 10

Re: Effect High pass filter with Q

Post by юра00 » Sun Dec 28, 2014 7:14 pm

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.

юра00
Posts: 886
Joined: Mon Jan 21, 2013 11:26 am
Operating System: Windows 10

Re: Effect High pass filter with Q

Post by юра00 » Sun Dec 28, 2014 7:18 pm

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))

steve
Site Admin
Posts: 81627
Joined: Sat Dec 01, 2007 11:43 am
Operating System: Linux *buntu

Re: Effect High pass filter with Q

Post by steve » Sun Dec 28, 2014 7:50 pm

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: Select all

[code]
[/code] at the start and

Code: Select all

[code]
[/code] at the end (which does not work).
Also, ensure that the "Disable BBCode" below the message composing box is not selected.

юра00
Posts: 886
Joined: Mon Jan 21, 2013 11:26 am
Operating System: Windows 10

Re: Effect High pass filter with Q

Post by юра00 » Sun Dec 28, 2014 8:11 pm

Code: Select all

...

юра00
Posts: 886
Joined: Mon Jan 21, 2013 11:26 am
Operating System: Windows 10

Re: Effect High pass filter with Q

Post by юра00 » Sun Dec 28, 2014 8:20 pm

Thank you! "Disable BB code" - default the tick is situated, after taking it away the button has been set to rights.

Post Reply