Search found 59476 matches

by steve
Mon Apr 11, 2016 1:23 am
Forum: Nyquist
Topic: Help with Nyquist filters
Replies: 18
Views: 2696

Re: Help with Nyquist filters

Making it into a sequence: (defun tone (hz dur) (stretch-abs dur (mult 0.4 (pwlv 0 0.01 1 0.2 0.4 0.8 0.3 1.0 0) (lp (sim (osc-pulse (pwlv hz 0.4 hz 0.5 (/ hz 2.0) 1 (/ hz 2.0)) (mult 0.4 (sum 1 (hzosc 1)))) (osc-pulse (pwlv (* 1.01 hz) 0.4 (* 1.01 hz) 0.5 (/ (* 1.01 hz) 2.0) 1 (/ (* 1.01 hz) 2.0)) ...
by steve
Sun Apr 10, 2016 10:29 pm
Forum: Nyquist
Topic: Idea for the "smart" limiter
Replies: 4
Views: 820

Re: Idea for the "smart" limiter

The Hard Limit setting doesn't affect anything that doesn't peak.
by steve
Sun Apr 10, 2016 9:23 pm
Forum: Nyquist
Topic: Idea for the "smart" limiter
Replies: 4
Views: 820

Re: Idea for the "smart" limiter

That sounds rather similar to the "Hard Limit" setting in Audacity's Limiter effect: http://manual.audacityteam.org/o/man/limiter.html
by steve
Sun Apr 10, 2016 9:15 pm
Forum: Nyquist
Topic: Help with Nyquist filters
Replies: 18
Views: 2696

Re: Help with Nyquist filters

Just for fun: (setf hz1 440) (setf hz2 220) (stretch-abs 3.0 (mult 0.2 (pwlv 0 0.01 1 0.2 0.4 0.8 0.3 1.0 0) (lp (sim (osc-pulse (pwlv hz1 0.4 hz1 0.5 hz2 1 hz2) (mult 0.4 (sum 1 (hzosc 1)))) (osc-pulse (pwlv (* 1.01 hz1) 0.4 (* 1.01 hz1) 0.5 (* 1.01 hz2) 1 (* 1.01 hz2)) (mult 0.4 (sum 1 (hzosc 2.3)...
by steve
Sun Apr 10, 2016 6:46 pm
Forum: Audacity 2.x Feedback and Reviews
Topic: Problems with the new Noise Reduction replacing Noise Remova
Replies: 156
Views: 27716

Re: Problems with the new Noise Reduction replacing Noise Re

You asked for examples: please hear attached 3 different versions of a scraped audio file which contains a good bit of background noise (I think it's wind). The 1st 7 seconds is the Raw file; the 2nd is same file with Noise Reduction; the 3rd is with Noise Removal. Thanks for the samples. I think t...
by steve
Sun Apr 10, 2016 5:59 pm
Forum: Windows
Topic: Audacity not recording after upgrading to Windows 10
Replies: 1
Views: 146

Re: Audacity not recording after upgrading to Windows 10

Check that "Sound Activated Recording" is not enabled (near the bottom of the Transport menu).

If that's not it, please tell us what you are trying to record and what settings you have in the device toolbar.
by steve
Sun Apr 10, 2016 1:49 am
Forum: Nyquist
Topic: Help with Nyquist filters
Replies: 18
Views: 2696

Re: Help with Nyquist filters

For one thing, tone generation always starts with zero The built-in "Generate > Tone" effect always starts the tone at "zero phase", but with Nyquist you don't have that limitation. For the basic "OSC" oscillator, the full syntax is: (osc pitch [duration table phase]) ...
by steve
Sun Apr 10, 2016 1:37 am
Forum: Nyquist
Topic: Help with Nyquist filters
Replies: 18
Views: 2696

Re: Help with Nyquist filters

There is some explanation of high / low pass filters in the manual: http://manual.audacityteam.org/o/man/high_pass_filter.html http://manual.audacityteam.org/o/man/low_pass_filter.html These two effects are written using Nyquist. If you look in the Audacity plug-ins folder you will find "highpa...
by steve
Sat Apr 09, 2016 2:03 pm
Forum: Compiling Audacity
Topic: wxWidgets 3.1.0 builds cleanly on OSX 10.11.4 & 10.11.sdk
Replies: 7
Views: 2030

Re: wxWidgets 3.1.0 builds cleanly on OSX 10.11.4 & 10.11.sd

rachalmers wrote:error C2039: 'max' : is not a member of 'std'
Have you checked if <algorithm> is included in the places where this occurs?