Search found 59476 matches
- Sat Mar 09, 2019 3:33 pm
- Forum: Audio Processing
- Topic: How can I amplitude modulate one channel with another ?
- Replies: 24
- Views: 11540
Re: How can I amplitude modulate one channel with another ?
Have you said what you are actually trying to do? You've said that it's to do with data rather than "audio", but other than that I don't know what your objectives are.
- Sat Mar 09, 2019 3:30 pm
- Forum: Windows
- Topic: FLAC size and conversion accuracy
- Replies: 12
- Views: 476
Re: FLAC size and conversion accuracy
2. Is there a way to import directly to 16-bit 44.1Khz? Yes, but don't do it. Even if you import as 16-bit, Audacity still works internally at 32-bit float, so there is still down-sampling during export. If you are only editing, and not doing any processing at all, then to avoid adding dither, you ...
- Sat Mar 09, 2019 3:26 pm
- Forum: Windows
- Topic: FLAC size and conversion accuracy
- Replies: 12
- Views: 476
Re: FLAC size and conversion accuracy
1. If the Dither Shape option has such a downside, there must a purpose for it right? It's a fairly small downside really. For 16-bit audio, the dither noise is around -84 dB RMS, which at normal listening levels is virtually inaudible. Yes there's a purpose to it. what is one losing by not having ...
- Sat Mar 09, 2019 2:45 pm
- Forum: Windows
- Topic: Hebrew UI has too agressive justifiaction to the right [CLOSED]
- Replies: 15
- Views: 1074
Re: Hebrew UI has too agressive justifiaction to the right [CLOSED]
I'm closing this bug as there have been significant improvements to RTL language handling.
If you wish to discus any remaining issues, please feel free to start a new topic.
If you wish to discus any remaining issues, please feel free to start a new topic.
- Sat Mar 09, 2019 2:34 pm
- Forum: Windows
- Topic: Macros: Change Pitch intermittently zero'd out
- Replies: 16
- Views: 1464
Re: Macros: Change Pitch intermittently zero'd out
Audacity 2.3.0 Windows 10 I created a macro that speeds up tempo 6%, reduces pitch -5%, and normalizes. Ran it on a dozen projects, worked fine. Then checked some of them just to be sure, and found the last six the change pitch stopped being applied. I checked the macro. As shown in the picture bel...
- Sat Mar 09, 2019 2:16 pm
- Forum: Windows
- Topic: FLAC size and conversion accuracy
- Replies: 12
- Views: 476
Re: FLAC size and conversion accuracy
Audacity works internally in 32-bit float format. FLAC files are either 16-bit or 24-bit. There is therefore "down sampling" when exporting from Audacity to FLAC (the sample values are rounded from 32-bit floating point values, to 16 or 24-bit integer values. By default, Audacity applies &...
- Sat Mar 09, 2019 2:07 pm
- Forum: Audio Processing
- Topic: How can I amplitude modulate one channel with another ?
- Replies: 24
- Views: 11540
Re: How can I amplitude modulate one channel with another ?
I thought that, very briefly, something like "mult s1 s2" can do the multiplication The "mult" function works with numbers or sounds. (mult 3 2) ;returns 6 (mult 3 my-sound) ;multiplies each sample in "my-sound" by 3 (mult sound-a sound-b) ;multiplies each sample in &q...
- Sat Mar 09, 2019 12:16 pm
- Forum: Announcements
- Topic: Audacity 2.3.1 Released
- Replies: 0
- Views: 6323
Audacity 2.3.1 Released
March 8th, 2019: Audacity 2.3.1 Released Download page: https://www.audacityteam.org/download/ Audacity 2.3.1 replaces all previous versions for Windows, macOS and Linux. Over 20 bugs fixed, and a few small improvements/changes to features (since 2.3.0). Linux: Linux support is back on track with t...
- Sat Mar 09, 2019 11:50 am
- Forum: Windows
- Topic: delete all vocals Audacity 2.1.0
- Replies: 1
- Views: 84
Re: delete all vocals Audacity 2.1.0
I'll go with "not possible".
I'd also recommend updating to the current 2.3.1 version of Audacity. It's available via the Audacity website: https://www.audacityteam.org/download/windows/
I'd also recommend updating to the current 2.3.1 version of Audacity. It's available via the Audacity website: https://www.audacityteam.org/download/windows/
- Sat Mar 09, 2019 11:41 am
- Forum: Audio Processing
- Topic: How can I amplitude modulate one channel with another ?
- Replies: 24
- Views: 11540
Re: How can I amplitude modulate one channel with another ?
Audacity works internally in 32-bit floating point format. Nyquist also treats sounds as 32-bit float. For the "valid" range (not exceeding 0 dB), the numeric values of samples are in the range +/- 1. Therefore, multiplying two sounds that don't exceed 0 dB, the product will not exceed 0 d...