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
A MOV file is an Apple QuickTime movie - the default format for video recorded on iPhone, iPad, and Mac. On a Mac, double-click it to play in QuickTime Player. On Windows 10/11, the…
Open .MOV details →An MP3 file is a compressed audio recording - a song, podcast, audiobook, or ringtone. Almost every device plays it without extra software: double-click on Windows to open Media Player, on…
Open .MP3 details →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
M4Ainstead:ffmpeg -i input.mov -vn -c:a copy output.m4acopies 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?
Can I convert MOV to MP3 on a Mac without installing anything?
brew install ffmpeg) or VLC.Why does VLC take so long to convert?
The output MP3 is silent - what happened?
ffmpeg -i input.mov to list all tracks, then add -map 0:a:1 to select the second audio track.