FormatDrop
Audio Format

AC3

Dolby Digital (AC-3)

AC3 (Dolby Digital) is the surround sound audio format used in DVDs, Blu-rays, digital TV broadcasts, and many video containers (MKV, VOB). It supports up to 5.1 channels of audio (front left, front center, front right, surround left, surround right, and low frequency effects/subwoofer). Understanding AC3 matters when converting video files that contain AC3 audio tracks.

What is AC3?

AC-3 (Audio Codec 3) was developed by Dolby Laboratories and standardized by the ATSC in 1995. It was the mandatory audio format for DVD-Video and became the standard for North American digital television broadcasts (ATSC). AC3 specifications: up to 5.1 channels of audio, bitrate from 32 kbps to 640 kbps (384 kbps typical for DVD, 448-640 kbps for Blu-ray), sample rate: 32, 44.1, or 48 kHz, perceptual coding algorithm: filterbank + bit allocation similar to MP3 but designed for surround sound. AC3 files have the .ac3 extension when standalone but are most commonly found as audio tracks inside: DVD VOB files (mandatory audio track), MKV container files (common surround sound track), TS/M2TS files from digital broadcasts, and occasionally inside MP4 containers. Apple's ecosystem (iPhone, Mac, iOS) doesn't natively support AC3 playback. This is why many video converters ask whether to 'convert AC3 to AAC' — the conversion makes the surround audio compatible with Apple devices, at the cost of downmixing 5.1 to stereo. Dolby Digital Plus (E-AC3) is the successor to AC3, used on Blu-rays and streaming services (Netflix, Amazon Prime). It supports more channels and higher bitrates. Dolby Atmos uses a version of Dolby Digital Plus with object-based audio metadata.

AC3 pros and cons

Advantages

  • True 5.1 surround sound up to 640 kbps
  • Universal DVD and digital TV standard
  • Very widely supported in dedicated AV equipment
  • Good quality at typical DVD bitrates (384 kbps)
  • Supported by Windows Media Player and most PC media players

Limitations

  • Not supported on iPhone, iPad, or iOS natively
  • Not natively supported in MP4 containers (playback issues on Apple devices)
  • Lower quality than Dolby TrueHD, DTS-HD MA, or FLAC at equivalent channels
  • Lossy — not suitable as a lossless master
  • Requires hardware decoder or software like VLC for surround output

When should you convert AC3 files?

Convert AC3 to AAC when you need the audio to play on iPhone, iPad, Apple TV, or any Apple device — Apple's ecosystem doesn't support AC3. The conversion downmixes 5.1 to stereo AAC, losing the surround sound effect. Convert AC3 to maintain surround when using devices that support AC3 passthrough (AV receivers, home theatre systems, smart TVs with Dolby Digital support). Keep AC3 when the video file will be played through an AV receiver or surround sound system that decodes Dolby Digital.

Convert AC3 files

All FormatDrop conversions run entirely in your browser — no file upload, no server processing. Your files stay on your device.

AC3 FAQ

How do I convert AC3 5.1 to AAC stereo?
FFmpeg downmix command: ffmpeg -i input.ac3 -c:a aac -b:a 256k -ac 2 output.aac. The '-ac 2' specifies stereo output. FFmpeg applies Dolby's Pro Logic II downmix algorithm by default. For better downmix quality: ffmpeg -i input.ac3 -c:a aac -b:a 256k -ac 2 -af 'pan=stereo|FL < FL + 0.707*FC + 0.707*BL|FR < FR + 0.707*FC + 0.707*BR' output.aac
Why does my MKV video have no sound on iPhone?
Most MKV files from Blu-ray remuxes or downloads contain AC3 or DTS audio, which iOS doesn't support. When converting MKV to MP4 for iPhone: always convert the audio to AAC: ffmpeg -i input.mkv -c:v copy -c:a aac -b:a 256k output.mp4. If the video contains both AAC and AC3 tracks, choose the AAC track: ffmpeg -i input.mkv -map 0:v:0 -map 0:a:0 -c:v copy -c:a aac output.mp4 (assuming audio track 0 is the AAC track).
What is the difference between Dolby Digital (AC3) and DTS?
Both AC3 and DTS are lossy surround sound codecs used in DVDs and Blu-rays. AC3 (Dolby Digital): 640 kbps maximum, developed by Dolby. DTS: 1.5 Mbps typical (much higher bitrate), developed by Digital Theater Systems. At typical bitrates, DTS audio is considered marginally better quality than AC3 because it uses higher bitrate. However, both are surpassed by their lossless successors: Dolby TrueHD (from AC3) and DTS-HD Master Audio (from DTS).