"File menu > Export > Export Audio..." (rather than "Export WAV")
Select "WAV (Microsoft) signed 24-bit PCM" and export.
The next time you select "Export Audio" (shortcut "Ctrl + Shift + E"), it should remember the last used settings.
Search found 59476 matches
- Sat Oct 06, 2018 12:37 pm
- Forum: Windows
- Topic: Can I set a default bit-depth for exported WAV files?
- Replies: 2
- Views: 233
- Sat Oct 06, 2018 12:26 pm
- Forum: Windows
- Topic: Newbie with constant crashing
- Replies: 4
- Views: 178
- Sat Oct 06, 2018 12:13 pm
- Forum: GNU/Linux
- Topic: Audacity 2.3.0 update gone wrong
- Replies: 8
- Views: 855
Re: Audacity 2.3.0 update gone wrong
I'm just going to skip 2.3.0 in the hope that 2.4 will work better. Audacity 2.3.0 should only be used on Windows and Mac. We had the Linux tarball (marked as "Experimental") for a short while, but too many people were installing it as a "production" version, so we have now remo...
- Sat Oct 06, 2018 12:03 pm
- Forum: macOS
- Topic: Removing any Cached/Temp Audio Files??
- Replies: 10
- Views: 1891
Re: Removing any Cached/Temp Audio Files??
"Secure Empty Trash" only works with spinning disk drives, and has apparently been removed from recent versions of macOS (https://www.macworld.com/article/300579 ... pitan.html)
- Sat Oct 06, 2018 11:17 am
- Forum: Français
- Topic: audacity 2.3.0
- Replies: 5
- Views: 923
Re: audacity 2.3.0
Is the version 2.3.0 a temporary version? If you got it via the Audacity website (https://www.audacityteam.org/download/windows/) then it is an official release version. Is that where you got it from? Did you get the recommended "exe" version? If so, try re-running the installer, and when...
- Sat Oct 06, 2018 11:05 am
- Forum: macOS
- Topic: Removing any Cached/Temp Audio Files??
- Replies: 10
- Views: 1891
Re: Removing any Cached/Temp Audio Files??
how hard it would be to recoverd deleted files. Recovering Audacity data after it has been deleted is quite difficult, simply because it is in 6 second chunks that are randomly named. We've seen quite a few people on this forum that are desperate to recover projects that they have deleted. I don't ...
- Fri Oct 05, 2018 11:37 pm
- Forum: Nyquist
- Topic: Lists as data type for Plugin "Control" parameter?
- Replies: 5
- Views: 805
Re: Lists as data type for Plugin "Control" parameter?
The "string to list" trick is neat (and I've never seen "eval-string" before, but it seems like a little "Code is Data" Lisp magic). "eval-string" is very new and not yet documented, except for in the code: https://github.com/audacity/audacity/blob/master/nyq...
- Fri Oct 05, 2018 11:27 pm
- Forum: Windows
- Topic: Effect > Vocal Reduction and Isolation...does not populate the drop menu???
- Replies: 1
- Views: 129
Re: Effect > Vocal Reduction and Isolation...does not populate the drop menu???
Which version of Windows?
Which version of Audacity? (look in "Help > About Audacity")
Which version of Audacity? (look in "Help > About Audacity")
- Fri Oct 05, 2018 7:23 pm
- Forum: Nyquist
- Topic: Lists as data type for Plugin "Control" parameter?
- Replies: 5
- Views: 805
Re: Lists as data type for Plugin "Control" parameter?
With Audacity 2.3.0, the Nyquist Generate Prompt has become redundant. You can just use the Nyquist Prompt (now in the new "Tools" menu, and add the header:plinysuetonious wrote: ↑Fri Oct 05, 2018 6:22 pmPs. Much thanks to the developers of the Nyquist Generate Prompt!
Code: Select all
;type generate- Fri Oct 05, 2018 7:21 pm
- Forum: Nyquist
- Topic: Lists as data type for Plugin "Control" parameter?
- Replies: 5
- Views: 805
Re: Lists as data type for Plugin "Control" parameter?
A list may be passed to Nyquist as a string. For example, to pass a list of number (for a public plug-in, you should validate the input, but here I'll just demonstrate the list)... ;version 4 ;type tool ;; IMPORTANT: Requires Audacity 2.3.0 (or later) ;control numbers "Space separated list of n...