Search found 59476 matches

by steve
Sun Feb 14, 2021 2:52 am
Forum: Adding Features to Audacity
Topic: Mac: "Cmd + D" for "No" button in dialogs
Replies: 6
Views: 390

Re: Mac: "Cmd + D" for "No" button in dialogs

I'm using Big Sur, and Apple have completely changed the confirmation dialog. It now has three large buttons in a vertical column. From the keyboard, to select "No", it's "Shift + Tab" then "Enter", or "Tab" twice then "Enter". This is a macOS change...
by steve
Sat Feb 13, 2021 10:55 pm
Forum: Windows
Topic: Changing 16 bit to 24 bit
Replies: 4
Views: 100

Re: Changing 16 bit to 24 bit

By default, Audacity works in 32-bit float format. It is very highly recommended that you retain this default.

To export as 24-bit wav, select "File menu > Export > Export as WAV", and then set "Encoding" to "Signed 24-bit PCM".
by steve
Sat Feb 13, 2021 10:52 pm
Forum: GNU/Linux
Topic: Seeking Developer for Hire to Modify Audacity (Linux)
Replies: 4
Views: 484

Re: Seeking Developer for Hire to Modify Audacity (Linux)

We don't provide email support - forum support only.
Also, it's very rare that the developers visit this forum - you would be better contacting them directly via their mailing list (see: https://www.audacityteam.org/contact/mailing-lists/)
by steve
Sat Feb 13, 2021 10:48 pm
Forum: Windows
Topic: Bug Report - Deselecting Solo button unmutes all tracks in project (Audacity 2.4.2)
Replies: 2
Views: 145

Re: Bug Report - Deselecting Solo button unmutes all tracks in project (Audacity 2.4.2)

Deselecting the Solo button on any track unmutes all tracks in project. Not a bug, just a different default behaviour. Yes it's inconvenient for multi-track projects, but the majority of users only ever work on single track projects (hence the new default). For multi-track projects there's another ...
by steve
Sat Feb 13, 2021 8:33 pm
Forum: Windows
Topic: Could you calculate and shift values in Nyquist?
Replies: 4
Views: 141

Re: Could you calculate and shift values in Nyquist?

The official Nyquist FFT Tutorial is here: https://www.audacity-forum.de/download/ ... torial.htm
(Warning: It's complicated)
by steve
Sat Feb 13, 2021 8:14 pm
Forum: Windows
Topic: Could you calculate and shift values in Nyquist?
Replies: 4
Views: 141

Re: Could you calculate and shift values in Nyquist?

can audacity somehow calculate numbers? Yes Audacity can do arithmetic operations. For example, in the Nyquist Prompt: (setf A 23) (setf B 7) (print (+ A B)) ;prints "30" 10=high notes & 0=low notes Nyquist does not know what "high notes" and "low notes" mean. As I...
by steve
Sat Feb 13, 2021 7:47 pm
Forum: New Plug-Ins
Topic: SiP Amplitude Histogram
Replies: 2
Views: 556

Re: SiP Amplitude Histogram

A very interesting and unique output method :) It's a little bit risky using Unicode as Nyquist itself does not support it, but it worked fine for me. Also it's nice to see someone using SAL :ugeek: Personally I always use the Lisp syntax (SAL didn't exist when I started learning how to use Nyquist)...
by steve
Sat Feb 13, 2021 6:57 pm
Forum: Windows
Topic: right channel overlays left channel
Replies: 14
Views: 353

Re: right channel overlays left channel

I ripped a vinyl (Sgt Peppers Hearts Club Band, which has really distinct left and right channels) to a good computer, with good results, and to the bad computer, with bad results. Again, same grabber hardware, and same vanilla Audacity settings. So that we're covering all bases, please describe in...
by steve
Sat Feb 13, 2021 3:52 pm
Forum: Windows
Topic: AUDACITY CREATING UNWANTED SILENCES
Replies: 8
Views: 245

Re: AUDACITY CREATING UNWANTED SILENCES

This is why I use Wavepad - the instructions for Audacity are extremely poor and the features limited and complicated to use...I suppose that's why it is free. For the record, Audacity is MUCH more powerful than Wavepad, and has a lot more documentation because there is a lot more to document, but ...
by steve
Sat Feb 13, 2021 2:05 pm
Forum: Windows
Topic: How to have a fading muffled effect?
Replies: 10
Views: 359

Re: How to have a fading muffled effect?

An alternative approach is to apply this Nyquist code to the track in the Nyquist Prompt effect (See: https://manual.audacityteam.org/man/nyquist_prompt.html) ;version 4 (setf hz 750) (let* ((dry (pwlv 1 1 0)) (wet (diff 1 dry))) (sum (mult (lowpass2 *track* 750) wet) (mult *track* dry))) Or for a s...