I’m learning new things each day about this stuff. I also converted an audio file (Online Audio Converter – ?onvert Sound to MP3, WAV, MP4, M4A, OGG or iPhone Ringtones (http://online-audio-converter.com/)) to wav and it is at 3,072 kbps.
So I’m assuming that wav is able to hold a higher bitrate than mp3 (I think that FLAC is probably the highest quality). Could someone explain this?
From what I gather from casually reading comments posted here anyway
———- Post added at 06:28 AM ———- Previous post was at 06:21 AM ———-
Btw, the reason many folks here prefer a variable bit rate for their mp3’s rather than a continual set rate is that only certain maounts of data are needed at any given time per track. Coninual bit rate of 320 will make the file that large, whether it is useless empty space or not. But a vbr file only uses exactly as much space as is needed for the audio being played. Same sound quality, less space, hence considered superior, although thinking that way takes some getting used to. Depending on the original audio sources and what was done to them, an mp3 128 file may have superior audio to an mp3 320 file.
– Those 1411 kbps from the FLAC file are, as pointed out by Zeratul13, the typical bitrate of CDs and correspond to a decoded stream of 16 bits and 44.1 kHz samples per second in 2 channels:
<pre> 2 * 16 * 44100 = 1411200 bits/second</pre>
Every second of the decoded audio needs 1411.2 kbits, no matter if it is total silence or a loud complex sound.
– Conversely you see 3072 kbps in a FLAC or WAV file if the audio has a faster sampling frequency of 96 kHz and the same bit depth and number of channels:
<pre> 2 * 16 * 96000 = 3072000 bits/second</pre>
For the second type of bitrate in compressed-lossy formats like MP3, the numbers 320, 192 or 128 tell the amount of encoded kilobits to be read from the file (or a mean estimation for non-constant bitrates) in order to deliver 1 second of real audio.
But you may also see this kind of information for lossless files storing sound of legit CD quality at 1411 kbps when some program shows a bitrate like, for example, "758 kbps". That number is computed from the size of the file (which is lossless but also compressed) and the duration of the audio, and it gives an indication about the complexity of the sound for a given encoding algorithm. So, you could have the same original audio in two lossless files showing two bitrates of this kind, like "814 kbps" and "769 kbps"; the difference would depend on the compression mode or the lossless formats used with those identical streams.
While uncompressed formats such as WAV will have a fixed (and relatively high) kbps rate, this value can be reduced by using compression algorithms. There are various options available.
The two main branches are:
Lossless
Lossy
With lossless, the idea is to pack your data as much as possible, but then be able to unpack it without a single bit of data being altered – this is somewhat like a zip file. But audio, like video and images, can be compressed to a high degree by being a bit cheeky and cutting corners – and guess what, those corners are the kbps rates. By lowering the amount of data a compression session packs in, less will be needed to be unpacked. The trick is to use a rate which will not betray any quality loss to the listener.