Are you sure? http://forum.audacityteam.org/viewtopic ... 46&t=95279Tim Lookingbill wrote:I tried to upgrade to the most recent Audacity version
Search found 59476 matches
- Mon Mar 20, 2017 6:45 pm
- Forum: Making Music with Audacity
- Topic: Peaky notes, EQ and compressor limitations, uncontrollable
- Replies: 93
- Views: 14821
Re: Peaky notes, EQ and compressor limitations, uncontrollab
- Mon Mar 20, 2017 6:42 pm
- Forum: New Plug-Ins
- Topic: Expression Generator
- Replies: 21
- Views: 4770
Re: Expression Generator
White noise:
Code: Select all
(- (rrandom) 0.5)- Mon Mar 20, 2017 6:41 pm
- Forum: New Plug-Ins
- Topic: Expression Generator
- Replies: 21
- Views: 4770
Re: Expression Generator
Most of the Nyquist plug-in "Property Lists" should also work.
- Mon Mar 20, 2017 6:32 pm
- Forum: New Plug-Ins
- Topic: Expression Generator
- Replies: 21
- Views: 4770
Re: Expression Generator
Are there any additional features that you think would be useful / interesting?
- Mon Mar 20, 2017 6:30 pm
- Forum: New Plug-Ins
- Topic: Expression Generator
- Replies: 21
- Views: 4770
Re: Expression Generator
There are also some constants available:
pi = 3.14159265...
t = true
nil = false
*sound-srate* = the track sample rate
*control-srate* = 1/20th of the track sample rate
dur = the specified duration in seconds
pi = 3.14159265...
t = true
nil = false
*sound-srate* = the track sample rate
*control-srate* = 1/20th of the track sample rate
dur = the specified duration in seconds
- Mon Mar 20, 2017 5:37 pm
- Forum: Windows
- Topic: setting source for timed recording
- Replies: 1
- Views: 144
Re: setting source for timed recording
Can Audacity open a url automatically for a timed recording? No it can't, but you may be able to schedule your web browser or a media player to open a specific URL at a specified time, either with the Windows Task Scheduler , or with a third party scripting application such as "AutoHotKey".
- Mon Mar 20, 2017 1:20 pm
- Forum: New Plug-Ins
- Topic: Expression Generator
- Replies: 21
- Views: 4770
Re: Expression Generator
One thing to watch out for: If you apply an arithmetic operator to integers, then integer arithmetic is used. If you want a fractional (floating point) result, then either one of the numbers must be a floating point number, or you must explicitly convert the number to floating point: (setf *float-fo...
- Mon Mar 20, 2017 1:09 pm
- Forum: New Plug-Ins
- Topic: Expression Generator
- Replies: 21
- Views: 4770
Re: Expression Generator
Just about everything here: http://www.cs.cmu.edu/~rbd/doc/nyquist/indx.htmlTrebor wrote:What's the full list of functions & operations we have to play with ?
provided that the expression returns a number (for the sample value).
- Mon Mar 20, 2017 1:07 pm
- Forum: New Plug-Ins
- Topic: Expression Generator
- Replies: 21
- Views: 4770
Re: Expression Generator
Tan(PI/2) is "undefined". It is neither +∞ or -∞. It is "not a number" (a "NaN"), and that is the problem. Audacity does not handle NaNs very well (but better now than in older releases). It's the NaNs that cause the corruption. When exported, the NaNs are replaced by I...
- Mon Mar 20, 2017 12:41 pm
- Forum: Windows
- Topic: Alignment probem exporting and importing
- Replies: 25
- Views: 4191
Re: Alignment probem exporting and importing
I am fooled by this every time I use it for multi-track recording and I think this is something that should be addressed in Audacity features. In fact I can't think of a multi-track use case where *removing* the time alignment makes sense but I imagine there must be one? As Gale hinted, this is one...