MP4 to MP3: Extract Audio from Any Video File

By FileConvertLab

Published:

MP4 video file being converted to MP3 audio format
Diagram showing MP4 video file (200 MB) being converted to MP3 audio (14 MB)

Converting MP4 to MP3 means extracting the audio track from a video and saving it as a standalone audio file. The video stream is discarded. You end up with a file that's typically 10–20× smaller than the original and plays on every phone, car stereo, and media player that exists.

Use our video to MP3 converter to do this instantly — no software to install. The rest of this guide explains bitrate choices, large-file handling, and when to use desktop freeware instead.

What Happens When You Convert MP4 to MP3

An MP4 file is a container. Inside it, there are typically two streams: a video track (H.264 or HEVC) and an audio track (usually AAC). The video track accounts for 90–95% of the file size.

When you convert to MP3, the tool reads the audio stream and re-encodes it to MP3 format.

The video stream is dropped entirely. This is why a 200 MB video can become a 5–15 MB MP3 — you're not compressing the audio heavily, you're just removing the video.

One important caveat: if the original MP4 was recorded with low-quality audio, the MP3 won't be better. Converting never improves audio quality — it can only preserve or reduce it.

Best Bitrate for MP4 to MP3 Conversion

The bitrate is the single most important setting when converting MP4 to MP3. Higher bitrate = better audio quality but larger file. Here's what to pick:

BitrateFile size (30 min)Use caseQuality
320 kbps~70 MBHigh-fidelity music archivingNear-transparent
192 kbps~43 MBMusic, general listeningExcellent
128 kbps~29 MBPodcasts, speech, radioGood
96 kbps~21 MBVoice memos, interviewsAcceptable
64 kbps~14 MBMinimum for speech onlyNoticeable compression
For most purposes, 192 kbps is the sweet spot: you can't hear the difference from the original on typical speakers or earbuds, and the file stays manageable.

Drop to 128 kbps for podcasts or lecture recordings — the human voice doesn't need the extra headroom that music does.

How to Convert MP4 to MP3

Online (fastest, no install)

The quickest path for most people. Upload the MP4, choose your bitrate, download the MP3.

Works directly in the browser — no account required.

  1. Open the video to MP3 converter
  2. Upload your MP4 file (drag and drop or browse)
  3. Select output quality (192 kbps recommended for music)
  4. Click Convert and download your MP3 Works on iPhone (Safari), Android (Chrome), Mac, and Windows. No app installation needed.

VLC — Free Desktop Software

VLC is the best freeware option for Windows and Mac. It's completely free, open source, and handles batch conversion.

  1. Open VLC → Media → Convert/Save (or Ctrl+R)
  2. Add your MP4 file(s) → click Convert/Save
  3. In the Profile dropdown, choose "Audio - MP3"
  4. Set the destination file path and click Start For batch conversion, add multiple files in step 2. VLC processes them sequentially.

Python (Automation)

For batch-converting folders of videos, Python with MoviePy is a good option:

from moviepy.editor import VideoFileClip import os

folder = "videos/" for filename in os.listdir(folder):
if filename.endswith(".mp4"):
path = os.path.join(folder, filename) clip = VideoFileClip(path) clip.audio.write_audiofile(path.replace(".mp4", ".mp3")) clip.close()

Install with pip install moviepy. This exports at the source audio quality by default. To set a specific bitrate, pass the bitrate parameter to write_audiofile.

Convert Large MP4 Files to MP3

Large files (500 MB to several GB) are common when converting video lectures, full movies, or long recordings. A few practical notes:

  • Online tools: Upload time is the bottleneck, not processing. On a 50 Mbps connection, a 1 GB upload takes about 2–3 minutes. Processing is fast — typically 30–60 seconds for a 1-hour video.
  • VLC offline: For very large files or slow internet, VLC processes entirely on your machine — no upload wait. A 2 GB file converts in under a minute on modern hardware.
  • File size estimate: At 128 kbps, a 1-hour MP4 produces about a 60 MB MP3. At 192 kbps, about 90 MB. Nowhere near the original video size regardless of method.

Converting MP4A and MPEG-4 Audio Files

You may encounter files labeled as "MP4A", "MPEG-4 Audio", or with an .m4a extension. These are audio-only variants of the MP4 container — no video track, just AAC audio. They convert to MP3 exactly like video MP4 files.

Common sources of MP4A files: iTunes purchases, Apple Voice Memos exports, recorded audio from GarageBand. If you need to play them on a device that doesn't support AAC, our M4A to MP3 converter handles them directly.

Troubleshooting MP4 to MP3 Conversion

No audio in the output MP3

The source MP4 may have no audio track (screen recordings, some animated GIFs saved as MP4). Open the file in VLC and check the Audio menu — if it's greyed out, there's nothing to extract.

Audio is out of sync

MP3 doesn't support variable frame rates or non-standard sample rates well. If the source video has variable audio timing (common in screen captures), try exporting to M4A or AAC instead — they handle this more gracefully than MP3.

File is much larger than expected

You likely converted at 320 kbps from a long file. A 2-hour video at 320 kbps produces a 280 MB MP3. Drop to 128 kbps for speech content — most listeners can't tell the difference for voices.

Summary

Extracting audio from a video is fast and lossless at the right bitrate. Use the video to MP3 converter for single files, VLC for batch jobs. For music, 192 kbps or higher keeps the quality indistinguishable from the original; for speech and podcasts, 128 kbps is plenty.

Related Tools

If you're working with other audio formats, these guides cover the same workflow:

Frequently Asked Questions

Does converting MP4 to MP3 reduce audio quality?

It depends on the bitrate you choose. If your MP4 contains AAC audio at 192 kbps and you export at 192 kbps MP3, the quality difference is barely audible. If you drop to 64 kbps to save space, you'll notice compression artifacts — tinny sound and smeared highs. For music, 192–320 kbps preserves quality well. For speech and podcasts, 128 kbps is plenty.

What's the best bitrate for converting MP4 to MP3?

Music: 192–320 kbps. Podcasts and speech: 96–128 kbps. Voice memos and interviews: 64–96 kbps. Higher bitrate = larger file but better quality. A 30-minute MP4 converted to 128 kbps MP3 produces roughly a 30 MB file — about 15× smaller than the original video.

Why is MP3 so much smaller than MP4?

MP4 files contain a video track (usually H.264 or HEVC) plus an audio track. The video track makes up 90–95% of the file size. When you extract just the audio to MP3, you drop the video completely. A 200 MB MP4 video can produce a 5–15 MB MP3, depending on the bitrate and duration.

Can I convert MP4 to MP3 on my iPhone without an app?

Not natively — iOS doesn't include a video-to-audio converter. The easiest option is using a browser-based tool: open Safari on your iPhone, go to the converter, upload the video, and download the MP3 directly to your Files app. No app installation required.

How do I convert a large MP4 file (over 1 GB) to MP3?

Large files work fine with online tools if you have a fast connection. Upload the MP4, wait for processing (a 1 GB file typically takes 1–3 minutes), then download the MP3. If your internet is slow, desktop software like VLC or Audacity handles large files offline without upload time.

Can I convert MP4A (MPEG-4 Audio) files to MP3?

Yes. MP4A files (sometimes showing as .m4a or MPEG-4 Audio) are audio-only containers — no video track. They convert to MP3 the same way as video MP4 files. Just upload the file and select MP3 as the output format.

Is there a free program to convert MP4 to MP3 on Windows?

VLC Media Player is the most popular freeware option — it's free, open source, and handles batch conversion. Audacity also works but requires an import plugin. For one-off conversions, an online converter is faster than installing desktop software.

Does converting MP4 to MP3 with Python work?

Yes. The MoviePy library handles this in a few lines: `from moviepy.editor import VideoFileClip; clip = VideoFileClip('video.mp4'); clip.audio.write_audiofile('audio.mp3')`. It's useful for automation — batch converting a folder of videos, for example. For occasional use, an online tool is faster.

MP4 to MP3: Extract Audio from Any Video File