Search found 59476 matches
- Fri Dec 21, 2018 12:00 pm
- Forum: Windows
- Topic: ACX new????? requirements
- Replies: 7
- Views: 987
Re: ACX new????? requirements
The MP3 encoding options are set in the MP3 export dialog screen. See: https://manual.audacityteam.org/man/mp3_export_options.html At the bottom of the export MP3 settings, you need to select: Bit Rate mode: => "Constant" Quality: => "192 kbps" Channel mode: => "Force export...
- Fri Dec 21, 2018 11:54 am
- Forum: Windows
- Topic: Keyboard Shortcut to FORCE a Pause event?
- Replies: 11
- Views: 417
- Fri Dec 21, 2018 11:46 am
- Forum: Nyquist
- Topic: if function when processing sound
- Replies: 2
- Views: 529
Re: if function when processing sound
I need to treat the sound differently depending on it's sign. You can do it like this: ;version 4 (defun process1(sig) ...some signal processing code...) (defun process2(sig) ...different processing code...) (defun polarity-split(sig) (let ((positive (s-max sig 0)) (negative (s-min sig 0))) (sum (p...
- Fri Dec 21, 2018 11:29 am
- Forum: Windows
- Topic: Can someone help me to find a needed effects?
- Replies: 3
- Views: 111
Re: Can someone help me to find a needed effects?
See here for how to post an audio sample: viewtopic.php?f=49&t=72887
- Fri Dec 21, 2018 11:23 am
- Forum: Windows
- Topic: Audacity Appearance
- Replies: 4
- Views: 1244
Re: Audacity Appearance
A manifest file will not fix the dpi problem (and Audacity already has a manifest file, but it has nothing to do with display dpi).
- Fri Dec 21, 2018 11:14 am
- Forum: Windows
- Topic: "Trial" watermark
- Replies: 2
- Views: 278
Re: "Trial" watermark
Perhaps you have "AVS Audio Tools" installed? The trial version of AVS Audio Tools is known to cause this problem.
- Fri Dec 21, 2018 11:12 am
- Forum: Windows
- Topic: "Trial" watermark
- Replies: 2
- Views: 278
Re: "Trial" watermark
Audacity does not have a "watermark". The watermark is probably coming from a demo plug-in that you installed some time.
- Fri Dec 21, 2018 11:06 am
- Forum: Windows
- Topic: Issue with the 2.3.0 version
- Replies: 1
- Views: 99
Re: Issue with the 2.3.0 version
but you wrote here that you fixed the problem (which was "user error"): viewtopic.php?p=285819#p285819
- Fri Dec 21, 2018 11:02 am
- Forum: Windows
- Topic: Failed to disconnect from DDE server
- Replies: 7
- Views: 1123
Re: Failed to disconnect from DDE server
Official releases of Audacity do not support ASIO (or ASIO4ALL), so running Audacity at the same time as an ASIO application (such as FL Studio) may cause conflicts. The only way that I know to completely avoid such conflicts, is to not use ASIO and non-ASIO applications at the same time. (The reaso...
- Fri Dec 21, 2018 10:53 am
- Forum: GNU/Linux
- Topic: Files double in size when 'Compressed'
- Replies: 7
- Views: 913
Re: Files double in size when 'Compressed'
I did not understand the Bit thing. I guess the 16 Bit and 24Bit are integers? Uncompressed "PCM" formats (like WAV and AIFF) represent audio as a sequence of numbers. Each number represents the waveform's amplitude at a specific time, and is called a "sample". These numbers (sa...