Search found 59476 matches

by steve
Sat Oct 06, 2018 4:54 pm
Forum: Windows
Topic: Ladspa plug ins?
Replies: 13
Views: 1049

Re: Ladspa plug ins?

Is that the "set of over 90 LADSPA plug-ins" mentioned on the Audacity website: https://www.audacityteam.org/download/plug-ins/ Those plug-ins are all very old and you may be better to find a VST alternative. Which version of Audacity? (look in "Help > About Audacity") Which spec...
by steve
Sat Oct 06, 2018 4:48 pm
Forum: Windows
Topic: Does Audacity have a 'Go To' function?
Replies: 2
Views: 130

Re: Does Audacity have a 'Go To' function?

While playback is stopped, you can type the required position in the "Start" box of the Selection Toolbar.
See here for more info: https://manual.audacityteam.org/man/sel ... onposition
by steve
Sat Oct 06, 2018 4:34 pm
Forum: New Plug-Ins
Topic: Scripting Helper
Replies: 1
Views: 664

Re: Scripting Helper

Example use: By running the effect with " Command: List All " we can see that there is a command called "ChangePitch". changepitch.png This is the same effect as "Change Pitch" in the Effect menu, but with AUD-DO we can run it in a Nyquist script. Next we need to know w...
by steve
Sat Oct 06, 2018 3:28 pm
Forum: Windows
Topic: Newbie with constant crashing
Replies: 4
Views: 178

Re: Newbie with constant crashing

Is there a way to install 2.2? Go here: http://www.oldfoss.com/Audacity.html Scroll down to the bottom of the page and select version 2.2.2 Then click on the link "audacity-win-2.2.2.exe" (Windows installer). When the download has completed, double click on the downloaded file and follow ...
by steve
Sat Oct 06, 2018 3:25 pm
Forum: Audiobook Production
Topic: HELP! Same set up over two days, but different audio quality!
Replies: 45
Views: 3735

Re: HELP! Same set up over two days, but different audio quality!

What are your settings in the device toolbar?
What are your settings in "System Preferences > Sound > Input"?
by steve
Sat Oct 06, 2018 3:12 pm
Forum: New Plug-Ins
Topic: Scripting Helper
Replies: 1
Views: 664

Scripting Helper

Requires Audacity 2.3.0 or later. The plug-in (bottom of post) is called "Scripting Helper..." and it was made primarily for experimenting and testing the new AUD-DO functions. When installed, it will appear in the Tools menu. Window000.png The plug-in performs 4 functions according to th...
by steve
Sat Oct 06, 2018 2:49 pm
Forum: Windows
Topic: Help \ Manual in Audacity2.3.0
Replies: 4
Views: 315

Re: Help \ Manual in Audacity2.3.0

Other than the ease of install and keeping all of your previous settings, is there any difference in running the exe installer or installing the zip file of Audacity to the root directory? At present, there's very little difference, though future versions of the installer may check for the presence...
by steve
Sat Oct 06, 2018 2:30 pm
Forum: GNU/Linux
Topic: Audacity 2.3.0 update gone wrong
Replies: 8
Views: 855

Re: Audacity 2.3.0 update gone wrong

Yes, there's a missing null check around line 4821 in src/Menus.cpp auto parent = focus->GetParent(); should be wxWindow *parent = nullptr; if (focus != nullptr) { parent = focus->GetParent(); } or as one line: wxWindow* parent = focus ? focus->GetParent() : nullptr; This is now fixed in the 2.3.1 a...
by steve
Sat Oct 06, 2018 2:23 pm
Forum: GNU/Linux
Topic: Audacity 2.3.0 update gone wrong
Replies: 8
Views: 855

Re: Audacity 2.3.0 update gone wrong

That update is distributed through the update manager from Linux Mint and it is still available in the repository (Linux Mint uses the Ubuntu repositories). They handle it as a stable release. That would explain why many people have got that update. :shock: It shouldn't be, though it may be listed ...
by steve
Sat Oct 06, 2018 12:42 pm
Forum: Windows
Topic: Help \ Manual in Audacity2.3.0
Replies: 4
Views: 315

Re: Help \ Manual in Audacity2.3.0

If you are able to install the manual on the computer, then you can (and should) install Audacity using the "exe" installer. Audacity will then automatically link to the installed manual. The ZIP version is intended for people that are unable to install on the computer.