FormatDrop
How-To Guide

How to Convert MPEG to MP3 (Audio from Video Files)

MPEG (.mpg or .mpeg) is the video format from the DVD and VCD era — MPEG-1 for VCDs, MPEG-2 for DVDs and broadcast TV. Converting MPEG to MP3 extracts the audio track for podcast use, music library archiving, or feeding to transcription services. The audio inside MPEG is typically MPEG-1 Layer II (MP2) or AC-3, which converts cleanly to MP3.

Quick answer

Browser: drop MPEG into formatdrop.com/audio-converter, choose MP3. FFmpeg: `ffmpeg -i input.mpeg -vn -c:a libmp3lame -b:a 192k output.mp3`. Works for MPEG-1, MPEG-2, MPEG-4 files identically.

Method 1: Convert MPEG to MP3 online (free, in your browser)

  1. 1

    Open the FormatDrop audio converter

    formatdrop.com/audio-converter. Local conversion.

    Go to converter
  2. 2

    Drop your MPEG file

    Drag .mpg or .mpeg. The converter handles MPEG-1 (VCD), MPEG-2 (DVD), and MPEG-4 (modern) variants.

  3. 3

    Choose MP3 and bitrate

    192 kbps for general use. 256-320 kbps for music archival. 128 kbps for voice content (broadcast TV, podcasts).

  4. 4

    Download the MP3

    Standard MP3 plays everywhere. ID3 tags populated where MPEG metadata is available.

Method 2Command line (FFmpeg)

Method 2: FFmpeg MPEG to MP3

FFmpeg handles every MPEG variant.

  1. Install FFmpeg.
  2. Standard: `ffmpeg -i input.mpeg -vn -c:a libmp3lame -b:a 192k output.mp3`.
  3. VBR: `ffmpeg -i input.mpeg -vn -c:a libmp3lame -q:a 0 output.mp3`.
  4. Batch: `for f in *.mpeg *.mpg; do ffmpeg -i "$f" -vn -c:a libmp3lame -b:a 192k "${f%.*}.mp3"; done`.

Note: FFmpeg detects MPEG-1, MPEG-2, MPEG-4 automatically.

Method 3VLC

Method 3: VLC MPEG to MP3

VLC's Convert/Save handles MPEG-to-MP3.

  1. VLC → Media → Convert/Save → add MPEG.
  2. Profile: 'Audio - MP3'.
  3. Set destination with .mp3 extension → Start.

Note: VLC handles MPEG-1, 2, 4 transparently.

Method 4Audacity

Method 4: Audacity (with FFmpeg add-on)

Audacity for users who want to edit before exporting.

  1. Install Audacity (free) and the FFmpeg library.
  2. File → Open → MPEG file. Audacity imports the audio track.
  3. Edit (trim, normalize, denoise as needed).
  4. File → Export → Export as MP3 → set bitrate → save.

Note: Audacity is the right tool when you want to clean up audio before MP3 export.

When you need to convert MPEG to MP3

  • 1

    Archiving DVD audio for music library

    Many old DVDs include music videos or concert footage. Extract the audio to MP3 for portable music libraries.

  • 2

    Podcast audio from broadcast TV recordings

    Recorded broadcast TV (often MPEG-2) → extract audio → use as podcast or sample source.

  • 3

    Speech-to-text on legacy video archives

    Run transcription on old MPEG video archives by extracting audio first. Faster and cheaper than processing full video.

  • 4

    Backup audio from old video collection

    Old VCDs/DVDs degrade over time. Extract audio to MP3 for permanent archival.

Troubleshooting common MPEG to MP3 problems

MPEG-2 audio is AC-3 (Dolby Digital), conversion fails

Some FFmpeg builds need specific flags for AC-3. Try: `ffmpeg -i input.mpeg -vn -c:a libmp3lame -b:a 192k -ac 2 output.mp3`. The `-ac 2` forces stereo downmix for 5.1 surround tracks.

Audio is out of sync with original video

MPEG variable framerate sometimes causes drift. Add `-async 1`: `ffmpeg -i input.mpeg -async 1 -vn -c:a libmp3lame output.mp3`.

Multiple audio tracks (different languages)

Map specific track: `ffmpeg -i input.mpeg -map 0:a:1 -vn -c:a libmp3lame output.mp3` (track 1 = second audio track). Use ffprobe to list tracks first.

Why convert MPEG to MP3?

MPEG is legacy video; MP3 is universal audio. Extracting audio from MPEG archives is a common task for preserving music, podcasts, or voice content from old video files. FFmpeg is the standard tool; the browser tool handles one-off use without install.

Your files never leave your device

FormatDrop runs the conversion engine entirely inside your browser using WebAssembly. No file upload. No server. Nothing stored. You can verify this by opening DevTools → Network tab and watching: zero upload requests.

Frequently asked questions

Will I lose audio quality?
MPEG audio is typically MP2 or AC-3 (lossy). Converting to MP3 is a second lossy step. At 192 kbps the difference is imperceptible.
Best bitrate for MPEG-to-MP3?
Music: 256-320 kbps. Voice/broadcast: 128-192 kbps. The MPEG source's bitrate caps how much quality you can preserve.
Convert MPEG to MP3 Now — Free

No account. No upload. Works in any browser.