Search found 59476 matches

by steve
Wed Aug 16, 2017 4:28 pm
Forum: Windows
Topic: trouble recording computer output
Replies: 9
Views: 686

Re: trouble recording computer output

If you are recording with WASAPI loopback. then recording will pause when there is no audio stream. If you are recording with WASAPI loopback and recording is not paused, then there is an active audio stream. What more can I tell you? I thought that you were successfully recording using WASAPI loopb...
by steve
Wed Aug 16, 2017 11:49 am
Forum: Adding Features to Audacity
Topic: Default window size.
Replies: 11
Views: 3015

Re: Default window size.

You didn't show time scale. Regardless of the absolute time scale, it can clearly be seen that the time resolution with a window size of 256 is much better (16 x better) than at 4096). Similarly, frequency resolution is much better (16 x better) with a window size of 4096 than a window size of 256....
by steve
Wed Aug 16, 2017 9:23 am
Forum: Adding Features to Audacity
Topic: Default window size.
Replies: 11
Views: 3015

Re: Default window size.

A click on a voice recording:
tracks003.png
tracks003.png (86.06 KiB) Viewed 2220 times
by steve
Tue Aug 15, 2017 11:24 pm
Forum: Windows
Topic: can't enable TDR Nova equalizer even though it's installed
Replies: 4
Views: 2307

Re: can't enable TDR Nova equalizer even though it's install

kozikowski wrote:Think it's still true Audacity is a 32 bit app.
Yes. 32-bit effects only (http://manual.audacityteam.org/man/inst ... st_install)
by steve
Tue Aug 15, 2017 8:30 pm
Forum: Windows
Topic: Auto-adjusting record level
Replies: 4
Views: 1357

Re: Auto-adjusting record level

Thanks for the clarification Koz. Yes that's what I meant.
by steve
Tue Aug 15, 2017 7:22 pm
Forum: Windows
Topic: Auto-adjusting record level
Replies: 4
Views: 1357

Re: Auto-adjusting record level

Check the Zoom call settings, and the Windows Sound Control Panel settings.
Audacity doesn't have any ability to change the recording level.
by steve
Tue Aug 15, 2017 6:04 pm
Forum: Audacity 2.x Feedback and Reviews
Topic: Bug: can't add user-defined images using .xpm
Replies: 5
Views: 1290

Re: Bug: can't add user-defined images using .xpm

jik wrote:Could you please pass the report on the developer's mailing list?
Sure, will do. Thanks.
by steve
Tue Aug 15, 2017 5:41 pm
Forum: Audacity 2.x Feedback and Reviews
Topic: Bug: can't add user-defined images using .xpm
Replies: 5
Views: 1290

Re: Bug: can't add user-defined images using .xpm

I'm not familiar with this part of the code, so all I can do is pass this on to the developer's mailing list, or you can do that yourself if you prefer.
by steve
Tue Aug 15, 2017 5:16 pm
Forum: Audacity 2.x Feedback and Reviews
Topic: Bug: can't add user-defined images using .xpm
Replies: 5
Views: 1290

Re: Bug: can't add user-defined images using .xpm

Which version are you looking at? That does not appear to quite match the current code: https://github.com/audacity/audacity/bl ... /Theme.cpp
by steve
Tue Aug 15, 2017 1:49 pm
Forum: Windows
Topic: Adding randomized silence (Windows 10, Audacity 2.1.3)
Replies: 86
Views: 7072

Re: Adding randomized silence (Windows 10, Audacity 2.1.3)

You could write the list of 'gains' (that will be shuffled) by hand as (setf gainlist (list 0 -5 -10 -15 -20 -25 -30 -35 -40 -45 0 -5 -10....)) but as we're writing a program, why not just tell the computer to generate the list for us: ;; Make a list of 100 numbers for gain levels where ;; 10 are at...