Convert AC3 to MP3
AC3 is Dolby Digital - the mandatory audio codec of DVD-Video and one of the primary Blu-ray audio formats. A bare .ac3 file is a raw AC-3 bitstream, usually 5.1 surround at 384 or 448 kbps. Wave decodes it, downmixes to stereo respecting the Dolby coefficients, and re-encodes to MP3. Audio codecs explained walks through where AC-3 sits vs. the everyday audio codecs.
What actually changes
AC-3 (Adaptive Transform Coder 3, standardised in 1991 by Dolby Labs and formalised as ATSC A/52) was the mandatory primary audio codec of DVD-Video from launch in 1996 through the transition to Blu-ray. It became "Dolby Digital" for consumer branding. Standalone .ac3 files usually come from DVD ripping tools that extracted the audio stream separately from the video, from broadcast transport-stream captures where the audio was demuxed for editing, or from Blu-ray audio-track exports. Almost every .ac3 file carries either stereo (192-224 kbps) or 5.1 surround (384-448 kbps).
Wave decodes AC-3 through ffmpeg-wasm's AC-3 decoder and re-encodes to MP3 at 192 kbps VBR through libmp3lame. For 5.1 sources, the AC-3 decoder produces six channels of PCM audio; Wave then downmixes to stereo using the Dolby downmix coefficients (Lt/Rt or Lo/Ro) embedded in the source. Those coefficients tell the decoder exactly how the surround channels should fold into the front pair to preserve dialogue centering, effects positioning, and rear-channel-ambience characteristics. The result is a stereo MP3 that sounds like the mix engineer's intended stereo fold, not a naive channel average.
AC-3 was Dolby's answer to the consumer surround-audio market of the 1990s: efficient enough to fit 5.1 audio in the bit budget DVD-Video allocated (roughly 400 kbps per audio track), decoded cheaply in the era's consumer audio processors, and licensable to every consumer-electronics manufacturer. Its later cousin E-AC-3 (Dolby Digital Plus) improved the efficiency further and added support up to 15.1 channels for Atmos-compatible mixing; AC-3 itself capped at 5.1 discrete channels.
The stereo MP3 output from a 5.1 AC-3 source is the practical delivery format for any playback chain that isn't a surround-capable AV receiver. Portable devices, laptops, in-car playback, and streaming platforms all consume stereo; the downmix Wave produces is what those platforms would produce if they decoded the AC-3 directly. If preserving surround is important, the source AC-3 file plays natively in VLC and any AV receiver - keep it and use MP3 only for the portable playback layer.
Three steps.
-
01
Step 1
Drop the .ac3 file onto the card.
-
02
Step 2
Wave inspects the source and confirms Decode-and-re-encode with 5.1-to-stereo downmix where applicable.
-
03
Step 3
Convert. Save the MP3.
Answers, specifically.
5.1 AC-3 - will dialogue still be audible in the stereo MP3?
Yes. AC-3's downmix metadata (Dolby Lt/Rt and Lo/Ro coefficients) is respected during the fold. Dialogue stays anchored to the centre of the stereo image; effects preserve their approximate left/right positioning.
E-AC-3 (Dolby Digital Plus) support?
Yes. The E-AC-3 decoder in ffmpeg-wasm handles the extended format. Bare .eac3 files (rare) convert the same way.
Where do .ac3 files come from?
Usually from a DVD ripping tool like MakeMKV's audio-only export, from a Blu-ray audio-track demux, or from a broadcast transport-stream capture where the AC-3 audio was extracted separately.
What about mono AC-3 files?
Yes. Some older broadcast content ships as mono AC-3. Wave decodes it and re-encodes to a stereo MP3 (with identical left and right channels).
Atmos content?
AC-3 caps at 5.1 and doesn't carry Atmos metadata. For Atmos sources, look at TrueHD (in Blu-ray M2TS) - Wave can handle that from the M2TS to MP3 path.
File size comparison?
A 90-minute 5.1 AC-3 at 448 kbps is about 300 MB. The MP3 output at 192 kbps stereo lands at about 130 MB - smaller because it's two channels vs six, even though the per-channel MP3 bitrate is close to the per-channel AC-3 bitrate.
Bit-depth or sample rate concerns?
AC-3 encodes to 48 kHz sample rate (DVD-Video standard); the MP3 output preserves that. Bit depth is not a source-level concern for the perceptual codec chain.