Exponential Wind-downs for synths?

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.
steve
Site Admin
Posts: 81627
Joined: Sat Dec 01, 2007 11:43 am
Operating System: Linux *buntu

Re: Exponential Wind-downs for synths?

Post by steve » Sat Aug 25, 2012 9:19 am

Try this:

Code: Select all

(setq start-frequency 10) ; initial frequency in kHz
(setq end-frequency 1) ; final frequency in kHz


(let* ((ny (/ *sound-srate* 2))
       (f1 (min (* start-frequency 1000) ny))
       (f2 (min (* end-frequency 1000) ny)))
  (lp (lp s (pwlv f1 1 f2))(pwlv f1 1 f2)))
The start and end frequencies must be less than half of the track sample rate.
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)

Thewoog34
Posts: 19
Joined: Sat Oct 08, 2011 8:28 pm
Operating System: Please select

Re: Exponential Wind-downs for synths?

Post by Thewoog34 » Sat Aug 25, 2012 7:19 pm

Perfect, now I have to just fool around with it until it sounds right.

I have this little piece of code here that converts any waveform into non-aliased triangle (a little mis-shapen though), I'll try and fix it up and create one for saw and square.

(mult 2.0 (sum (snd-abs s) -0.5))

Thewoog34
Posts: 19
Joined: Sat Oct 08, 2011 8:28 pm
Operating System: Please select

Re: Exponential Wind-downs for synths?

Post by Thewoog34 » Mon Aug 27, 2012 4:56 am

sites.google.com/site/nmoakman/test/fsweep.dll

http://www.youtube.com/watch?v=EXCQrnr9 ... ture=g-u-u

Check out this little plugin that Nick Oakman made. He owns the Youtube channels alarmsynthsrus and guitarguy19852.

Post Reply