Search found 59476 matches
- Sun May 17, 2015 12:10 pm
- Forum: Windows
- Topic: 320kbps is 96kbps? [SOLVED]
- Replies: 18
- Views: 2507
Re: 320kbps is 96kbps?
If I convert an mp3 that is 128kbps to 320kbps than it looks like the mp3 is much better, No it isn't better. Encoding to MP3 always makes the sound quality worse because some of the audio information is discarded. MP3 is a "lossy" format, which means that encoding always loses some of th...
- Sun May 17, 2015 12:01 pm
- Forum: Nyquist
- Topic: "bandwith" of the reson filter.
- Replies: 9
- Views: 4030
Re: "bandwith" of the reson filter.
Which values? I don't see any values of +50, +150 anywhere on this page.DERF wrote:These values (+ 50, + 150) correspond to radians?
As I wrote previously, I am not a mind reader.
- Sat May 16, 2015 5:18 pm
- Forum: Windows
- Topic: 320kbps is 96kbps? [SOLVED]
- Replies: 18
- Views: 2507
Re: 320kbps is 96kbps?
Details of that file: Format : MPEG Audio File size : 1.91 MiB Duration : 50s 76ms Overall bit rate mode : Constant Overall bit rate : 320 Kbps Writing library : LAME3.99r Audio Format : MPEG Audio Format version : Version 1 Format profile : Layer 3 Mode : Joint stereo Duration : 50s 128ms Bit rate ...
- Sat May 16, 2015 3:57 pm
- Forum: Announcements
- Topic: locked Play Region/cursor
- Replies: 93
- Views: 8087
Re: locked Play Region/cursor
Click where you want to lock the cursor. Left-click-drag a small Quick-Play region anywhere in the Timeline Right-click over the Timeline and wait for the Quick-Play to stop. Choose "Lock Play Region" from the still open context menu. OK, so that's a bug, but I don't see a pressing need t...
- Sat May 16, 2015 3:53 pm
- Forum: Windows
- Topic: 320kbps is 96kbps? [SOLVED]
- Replies: 18
- Views: 2507
Re: 320kbps is 96kbps?
Perhaps you could post a short example converted to 320 kbps with Audacity.
- Sat May 16, 2015 3:50 pm
- Forum: macOS
- Topic: COMPRESSION
- Replies: 15
- Views: 1714
Re: COMPRESSION
The waveform is hardly likely to "vanish" unless they also push the Threshold down to an extremely low level, but why does the threshold go so low anyway?Gale Andrews wrote:The problem would then be that naive users would say "Help, my waveform has vanished".
- Fri May 15, 2015 11:48 pm
- Forum: Windows
- Topic: What bit rate do I use when exporting audio from a video
- Replies: 10
- Views: 1702
Re: What bit rate do I use when exporting audio from a video
exporting it as MP3 compresses it again? Yes exporting as FLAC doesn't compress it? Correct. So, would it be better to convert a video online to FLAC first, open in Audacity for editing then export as MP3? The "damage" (loss of sound quality) is caused when the audio is encoded into a &qu...
- Fri May 15, 2015 9:57 pm
- Forum: macOS
- Topic: COMPRESSION
- Replies: 15
- Views: 1714
Re: COMPRESSION
Hang on. The very page you point to makes clear that the default (tied to the RMS choice) is downwards compression. Of course make-up to 0 dB is on by default. Yes, makeup gain is on by default, so the net effect is that it compresses "upward". As I wrote in an earlier post, upward compre...
Re: factor db
Using the default sine oscillator: (defun note (pitch dur amp ) (scale-db (+ amp 2.99) (osc pitch dur))) (abs-env (seq (note c4 i lp) (note d4 i lpp) (note f4 i lpp) (note g4 i lppp) (note d4 q lmp))) The amplitudes clearly follow the defined dynamics: firsttrack000.png
Re: factor db
(- amp 12 ) means amp - 12.
Whatever value "amp" is, (- amp 12) means 12 less.
So if amp = 18, then (- amp 12) is 6.
(scale-db (- amp 12 ) sound) will amplify "sound" by "amp - 12" dB.
Whatever value "amp" is, (- amp 12) means 12 less.
So if amp = 18, then (- amp 12) is 6.
(scale-db (- amp 12 ) sound) will amplify "sound" by "amp - 12" dB.