MOV MP3
File conversion

Convert MOV to MP3

Convert now
QUICK ANSWER
Is it possible to convert MOV to MP3?
Yes - MOV converts to MP3.

You can do it right here with our free converter - no sign-up, and your file is deleted right after.

Upload your MOV to the converter above and download an MP3 in seconds - it is free and your file is deleted after converting. The main caveat: iPhone MOV files store audio as AAC, so converting to MP3 is a lossy-to-lossy transcode and some quality is always lost.

Also to MP3: CAF · STS · OGA

On this page

Tested on macOS, Windows & Linux
Last verified Sep 2026

More free converters

HEIC, PNG, WEBP, MP3 and more - every tool here is free.

Open the toolbox
MOV → MP3 converterFREE

Why convert MOV to MP3?

Most people want the audio from a video clip - a voice memo, interview, or live performance - without keeping the full video file. .MP3 plays on virtually every device: phones, car stereos, media players, and podcast apps. MOV is Apple's QuickTime container, common from iPhones, iPads, and Mac screen recordings.

How to convert MOV to MP3

VLC media player FREE

Open VLC, go to Media > Convert/Save, add your MOV, choose the Audio - MP3 profile, and click Start. Note that VLC converts at real-time speed, so a 10-minute clip takes about 10 minutes.

Freemake Video Converter FREE

Add your MOV file, click the MP3 output button at the bottom, and click Convert.

Command line - FFmpeg CLI

Run ffmpeg -i input.mov -vn -b:a 192k output.mp3 - -vn drops the video track and -b:a 192k sets the audio bitrate.

Programs that convert MOV

About these formats

Quality & what to watch

  • iPhone MOV files use AAC audio; converting to MP3 is a lossy-to-lossy transcode - some quality is lost regardless of the bitrate chosen.
  • For better quality, extract to M4A instead: ffmpeg -i input.mov -vn -c:a copy output.m4a copies the AAC track without re-encoding.
  • MP3 carries audio only - video data, chapter markers, and QuickTime metadata are discarded.

Frequently asked questions

Will I lose quality converting MOV to MP3?
Almost certainly yes. iPhone MOV files use AAC audio, and converting AAC to MP3 is a transcode between two lossy formats. If quality matters, extract to M4A instead - it keeps the original AAC track unchanged.
Can I convert MOV to MP3 on a Mac without installing anything?
QuickTime Player can export audio but only to M4A, not MP3. For MP3 you need FFmpeg (via Homebrew: brew install ffmpeg) or VLC.
Why does VLC take so long to convert?
VLC processes at real-time speed, so a 10-minute clip takes about 10 minutes. FFmpeg performs the same conversion 10x to 50x faster depending on your hardware.
The output MP3 is silent - what happened?
Some MOV files contain multiple audio tracks. Run ffmpeg -i input.mov to list all tracks, then add -map 0:a:1 to select the second audio track.