Search found 59476 matches
- 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...
- 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....
- 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:
- 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
Yes. 32-bit effects only (http://manual.audacityteam.org/man/inst ... st_install)kozikowski wrote:Think it's still true Audacity is a 32 bit app.
- 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.
- 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.
Audacity doesn't have any ability to change the recording level.
- 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
Sure, will do. Thanks.jik wrote:Could you please pass the report on the developer's mailing list?
- 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.
- 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
- 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...