Help for Audacity on Windows.
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.
-
steve
- Site Admin
- Posts: 81627
- Joined: Sat Dec 01, 2007 11:43 am
- Operating System: Linux *buntu
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.
-
Thewoog34
- Posts: 19
- Joined: Sat Oct 08, 2011 8:28 pm
- Operating System: Please select
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))