Audio Formats and Bitrates: Choosing Settings That Are Not Guesswork
Audio settings come with three numbers that sound similar and control completely different things. Getting them confused leads to podcast episodes four times larger than they need to be, or music exports that sound thin for reasons the exporter cannot identify. The three are worth separating properly once.
Bitrate, sample rate and bit depth
Bitrate
How many bits per second the compressed file spends describing the audio. This is the main quality-versus-size control in any lossy format and the one you should normally be adjusting. 128 kbps means roughly one megabyte per minute.
Sample rate
How many times per second the waveform was measured, in Hz. It sets the highest frequency that can be represented, which is half the sample rate. 44.1 kHz captures up to about 22 kHz, comfortably above human hearing. Raising it beyond 48 kHz does not improve what you can hear; it mostly matters during production, not delivery.
Bit depth
How precisely each sample is measured, which determines the dynamic range between the quietest and loudest representable sound. This applies to uncompressed formats such as WAV. Lossy codecs do not have a bit depth setting at all, so if a tool offers you one alongside an MP3 export it is describing the intermediate stage, not the output.
The formats worth knowing
| Format | Type | Strength | Use it for |
|---|---|---|---|
| MP3 | Lossy | Plays on literally everything | Maximum compatibility, older hardware, podcast feeds |
| AAC | Lossy | Clearly better than MP3 at the same bitrate | Video soundtracks, Apple ecosystem, general delivery |
| Opus | Lossy | Best efficiency available, excellent at low bitrates | Web delivery, voice, streaming where you control playback |
| WAV | Uncompressed | Exact samples, no decode cost | Editing masters, short effects, interchange between tools |
| FLAC | Lossless compressed | Identical to WAV at roughly half the size | Archiving, music libraries where quality must not degrade |
Opus is technically the strongest option at almost every bitrate, but it is not universally supported by consumer hardware and podcast platforms. MP3 remains the safe answer whenever you do not control what will play the file.
Bitrates that make sense
| Content | MP3 | AAC or Opus |
|---|---|---|
| Voice, single speaker, mono | 64 kbps | 32 to 48 kbps |
| Podcast, several speakers | 96 to 128 kbps | 64 to 96 kbps |
| Music, casual listening | 192 kbps | 128 kbps |
| Music, careful listening | 256 to 320 kbps | 192 kbps |
| Archival | Do not use a lossy format | FLAC or WAV instead |
Speech is far more compressible than music because it occupies a narrow frequency range and has long near-silent gaps. Encoding an interview at 320 kbps stereo produces a file four times larger than necessary that sounds no better, and mono alone halves it with no loss for a single microphone.
Variable bitrate encoding, where available, spends more bits on complex passages and fewer on simple ones. For a given average size it generally sounds better than a constant bitrate. Use it unless something in your delivery chain specifically requires constant.
Extracting audio from video
A video file is a container holding separate video and audio streams. The audio inside an MP4 is usually already AAC, which means it can often be copied out verbatim rather than re-encoded.
- If the existing audio stream is already in a format you can use, copy it. This is instant and lossless because nothing is decoded or re-encoded.
- Only transcode when you need a different format, for example AAC to MP3 for a podcast host that demands it.
- Transcoding from one lossy format to another compounds the losses of both. Where the destination bitrate is similar to the source, the second encode does more harm than the bitrate number suggests.
- Check the channel count. Video soundtracks are sometimes 5.1 surround, and a careless downmix to stereo can leave dialogue, which usually lives in the centre channel, far too quiet.
Loudness, and why your file is quieter than everyone else
Perceived loudness is not the same as peak level. A file can peak at maximum and still sound quiet if its average level is low. Streaming platforms measure the average using the LUFS scale and normalise everything to a target, so exporting louder than the target gains you nothing and simply gets turned down, usually after being limited in ways you did not choose.
- Spoken word content is commonly targeted around -16 LUFS for stereo and -19 for mono.
- Music platforms typically normalise to somewhere between -14 and -16 LUFS.
- Leave a little headroom below maximum peak so that lossy encoding, which can slightly overshoot the original waveform, does not clip.
- Normalise before encoding, not after. Adjusting the level of an already-encoded lossy file means decoding and re-encoding it.
Common questions
Can I improve a low-bitrate MP3 by converting it to a higher bitrate?
No. The detail was discarded at the first encode. Converting a 96 kbps MP3 to 320 kbps produces a file three times larger containing exactly the same audible damage, plus a little more from the second encode.
Is 320 kbps always better than 192?
It is always larger. Whether it sounds better depends on the material and the listening conditions. On speech, through phone speakers or earbuds in a noisy place, the difference is generally inaudible. On dense music through good headphones it can be noticeable.
Should I record and edit in WAV?
Yes, for anything you will edit. Every lossy save cycle degrades the file, and editing accumulates several. Keep a WAV or FLAC master and export lossy copies from it.
Mono or stereo for a podcast?
Mono if it was recorded on one microphone or the speakers are not spatially separated. It halves the file size for no perceptible loss. Use stereo only where the stereo image carries real information, such as music or ambient recordings.
Try it yourself
The settings described above are all adjustable in the tool. Files stay on your device; nothing is uploaded to a server.
Open the audio converterRelated guides
- Making a Video File Smaller Without Making It Look BadVideo size is governed by four settings that interact. Change them in the right order and you can often cut a file by three quarters with no visible difference.
- Vectorising an Image: How Tracing Works and How to Tune ItTracing converts pixels into shapes, which works brilliantly on logos and badly on photographs. Understanding why tells you which images are worth attempting and how to set the parameters.
- Image Optimisation for Core Web Vitals: A Working ChecklistImages are usually the largest thing on a page and the most common cause of a poor Largest Contentful Paint score. This is the sequence of fixes that actually moves the number.