Convert RMVB to AC3 — Free Online Tool

Convert RMVB audio tracks to AC3 (Dolby Digital) format using FFmpeg in your browser. This tool extracts the audio stream from RealMedia Variable Bitrate files and re-encodes it to AC3 at 192k bitrate — the standard Dolby Digital codec used in DVDs, Blu-rays, and broadcast systems — making your content compatible with home theater receivers and professional AV equipment.

FFmpeg Command

Copy this command to run the same conversion locally with FFmpeg on your desktop. Download FFmpeg

Free — no uploads, no signups. Your files never leave your browser.

Estimated output:

Conversion Complete!

Download

How It Works

RMVB files store audio encoded in RealAudio or AAC, neither of which is natively supported by most home theater hardware or disc authoring workflows. This conversion discards the video stream entirely and re-encodes only the audio to AC3 using Dolby Digital's lossy compression algorithm at 192k bitrate. Because AC3 is a fundamentally different codec from anything stored in an RMVB container, a full audio decode-and-reencode is always performed — there is no lossless stream copy possible here. The output is a raw .ac3 file containing only the Dolby Digital audio, ready for use in DVD authoring tools, AV receivers, or broadcast pipelines.

What Each Flag Does

Flag What it does
ffmpeg Invokes the FFmpeg binary — the open-source multimedia processing engine that handles decoding the RMVB container and re-encoding its audio to Dolby Digital AC3 format.
-i input.rmvb Specifies the input file in RealMedia Variable Bitrate format. FFmpeg will demux the RMVB container and make both the video and audio streams available for processing, though only the audio will be used in this conversion.
-c:a ac3 Sets the audio codec to ac3, FFmpeg's native Dolby Digital encoder. This forces a full decode-and-reencode of the RMVB audio (whether RealAudio or AAC) into the AC3 bitstream format required by DVD, Blu-ray, and broadcast systems.
-b:a 192k Sets the AC3 output bitrate to 192 kilobits per second, the standard Dolby Digital bitrate for stereo audio on DVDs. Higher values like 384k or 448k are appropriate for 5.1 surround sound content to maintain quality across all channels.
output.ac3 Defines the output as a raw AC3 bitstream file with no container wrapper. The .ac3 extension signals to DVD authoring tools, AV receivers, and broadcast ingest systems that this is a standalone Dolby Digital audio file ready for direct use or muxing.

Common Use Cases

  • Extracting the audio from an RMVB film download to create a Dolby Digital AC3 track for use in a DVD authoring project
  • Converting RealMedia variable bitrate audio to AC3 so a home theater AV receiver can decode and play it natively over HDMI or S/PDIF
  • Preparing an RMVB documentary's audio track as an AC3 file for ingestion into broadcast or cable television playout systems that require Dolby Digital
  • Stripping and repackaging the audio from an RMVB anime or foreign film rip into AC3 format for muxing into an MKV or VOB container alongside separate subtitle tracks
  • Archiving the audio component of legacy RMVB video content in a widely supported, long-lived codec format before the RealMedia format becomes unsupported by modern tools

Frequently Asked Questions

Yes, some quality loss is unavoidable because this is a lossy-to-lossy transcode. The original RMVB audio (typically RealAudio or AAC) must be fully decoded and then re-encoded into Dolby Digital AC3. At the default 192k bitrate, the AC3 output is considered broadcast-quality and indistinguishable from the source for most listeners. If quality is critical, increase the bitrate to 320k or 448k using the -b:a flag.
Only if the original RMVB file contains a multichannel audio track. Most RMVB files distributed online carry stereo (2-channel) audio, so the resulting AC3 will also be stereo. If the source does have 5.1 audio, FFmpeg will preserve the channel layout during re-encoding into AC3, which natively supports up to 5.1 channels — one of its key advantages over MP3 or AAC in home theater contexts.
The .ac3 extension is a raw Dolby Digital bitstream without any container wrapper. This is intentional for maximum compatibility with DVD authoring software (like DVD Architect or Encore), Blu-ray tools, and broadcast ingest systems that expect a bare AC3 file. If you need the AC3 audio inside a container like MKV or MP4, you can mux it separately using FFmpeg after the conversion.
The video stream is completely dropped. FFmpeg extracts only the audio from the RMVB input and encodes it to AC3. No video data is written to the output file. This is why the output is a small .ac3 audio file rather than a video file — the tool is designed specifically for audio extraction and re-encoding, not video conversion.
Replace the 192k value in the -b:a 192k flag with your preferred bitrate. AC3 supports 96k, 128k, 192k, 256k, 320k, 384k, 448k, and 640k. For standard stereo content, 192k is the typical DVD standard. For 5.1 surround sound, 384k or 448k is recommended to maintain audio fidelity across all six channels. Example: ffmpeg -i input.rmvb -c:a ac3 -b:a 384k output.ac3
Yes, on a desktop with FFmpeg installed you can use a shell loop. On Linux or macOS: for f in *.rmvb; do ffmpeg -i "$f" -c:a ac3 -b:a 192k "${f%.rmvb}.ac3"; done. On Windows Command Prompt: for %f in (*.rmvb) do ffmpeg -i "%f" -c:a ac3 -b:a 192k "%~nf.ac3". The browser-based tool processes one file at a time, so the desktop FFmpeg command is especially useful for batch jobs.

Technical Notes

RMVB (RealMedia Variable Bitrate) is a legacy container format from RealNetworks that uses variable bitrate encoding to deliver reasonable quality at low file sizes — a technique that was popular for file sharing in the early-to-mid 2000s. Its audio is typically encoded in RealAudio (cook, atrac, or sipr codecs) or occasionally AAC, none of which can be stream-copied into an AC3 file. FFmpeg must therefore fully decode the audio to PCM and then re-encode it using the ac3 encoder, resulting in two generations of lossy compression. Metadata from the RMVB file such as title or artist tags is generally not preserved in a raw AC3 bitstream, as AC3 has very limited metadata support compared to container formats. The default 192k bitrate targets stereo Dolby Digital content at DVD-standard quality; AC3's maximum channel count is 5.1, and its maximum standardized bitrate is 640k. Note that AC3 is a fixed-bitrate codec, so the -b:a value sets the actual constant output bitrate — unlike the variable bitrate behavior of the source RMVB audio. Files over 1GB should be processed using the desktop FFmpeg command shown on this page, as the browser tool has a 1GB input limit.

Related Tools