Page 2 of 2
Check.
Posted: Sun Dec 28, 2014 6:23 pm
by юра00
[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?
Re: Effect High pass filter with Q
Posted: Sun Dec 28, 2014 6:43 pm
by steve
юра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/
Re: Effect High pass filter with Q
Posted: Sun Dec 28, 2014 7:14 pm
by юра00
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
Posted: Sun Dec 28, 2014 7:18 pm
by юра00
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
Posted: Sun Dec 28, 2014 7:50 pm
by steve
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.
Re: Effect High pass filter with Q
Posted: Sun Dec 28, 2014 8:11 pm
by юра00
Re: Effect High pass filter with Q
Posted: Sun Dec 28, 2014 8:20 pm
by юра00
Thank you! "Disable BB code" - default the tick is situated, after taking it away the button has been set to rights.