Convert MOV to MP3 — Free Online Tool

Extract and convert the audio track from a MOV file into a universally compatible MP3 using the LAME encoder. Ideal for pulling audio from QuickTime recordings, professional edits, or camera footage when you need a lightweight, shareable audio file.

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

MOV files typically carry audio encoded in AAC (or occasionally PCM), wrapped in Apple's QuickTime container alongside video tracks. This conversion strips away the video entirely and re-encodes the audio stream using the libmp3lame encoder to produce an MP3 file. Because AAC and MP3 are different audio codecs — not just different containers — a full audio transcode is required: the AAC bitstream is decoded to raw PCM audio, then re-encoded as MP3 at your chosen bitrate (default 128k). This means some generation loss occurs, but at 128k or above the result is perceptually transparent for most listening scenarios. The output is a standalone MP3 with no video data, making it dramatically smaller than the source MOV.

What Each Flag Does

Flag What it does
ffmpeg Invokes the FFmpeg tool. In the browser-based version of this tool, FFmpeg runs locally via WebAssembly (FFmpeg.wasm) — no files leave your device.
-i input.mov Specifies the input file, a MOV (QuickTime) container that may contain video, one or more audio tracks, subtitles, and chapter data. FFmpeg reads all streams but will only process what you direct it to output.
-c:a libmp3lame Sets the audio codec to libmp3lame, the LAME MP3 encoder. This decodes the source audio (typically AAC from a MOV file) and re-encodes it as MP3, which is required because MP3 is a fundamentally different codec, not just a different container wrapper.
-b:a 128k Sets the audio bitrate to 128 kilobits per second using constant bitrate (CBR) encoding. This is the conventional default MP3 quality — sufficient for speech and casual listening. Increase to 192k or 320k for music or higher-fidelity output.
output.mp3 Defines the output filename and tells FFmpeg to write an MP3 file. The .mp3 extension also signals FFmpeg to use the MP3 muxer, which produces a standalone audio file with no video or subtitle streams.

Common Use Cases

  • Extracting a recorded voice-over or narration from a Final Cut Pro or DaVinci Resolve MOV export to upload to a podcast platform
  • Pulling the audio from an iPhone or GoPro MOV clip to create a standalone music or ambient sound file
  • Converting a MOV screen recording of a webinar or lecture into an MP3 so listeners can follow along on a phone or MP3 player
  • Stripping audio from a MOV video interview to submit the audio-only file to a transcription service
  • Extracting a musical performance captured in QuickTime format to share on platforms that don't accept video files
  • Converting MOV audio tracks from a multi-camera shoot into MP3 files for quick review and sync testing

Frequently Asked Questions

Yes, some quality loss is unavoidable because both the original AAC audio in the MOV and the MP3 output are lossy codecs, meaning you are decoding one lossy format and re-encoding into another. At 128k bitrate the result is acceptable for speech and general listening, but for music or archival purposes consider using 192k or 320k. If you need lossless audio from a MOV file, consider converting to FLAC or WAV instead.
MOV files store metadata in QuickTime atoms, while MP3 uses ID3 tags — these are structurally different systems. FFmpeg will attempt to map common metadata fields like title and artist to ID3 tags in the output MP3, but not all QuickTime-specific metadata fields have direct ID3 equivalents and some may be dropped. You can inspect or edit ID3 tags after conversion using a tool like Mp3tag if precise metadata is important.
The FFmpeg command targets only the audio stream — the video track, any subtitle tracks, and chapter markers present in the MOV are all discarded. MP3 is a pure audio format with no container support for video, subtitles, or chapters, so none of that data can be carried over. Only the first audio track is extracted by default; if your MOV has multiple audio tracks, the command will select the best one automatically unless you specify otherwise.
By default FFmpeg selects the highest-quality or first audio stream. To target a specific track, add '-map 0:a:1' (for the second audio track, zero-indexed) before the output filename in the command, for example: 'ffmpeg -i input.mov -map 0:a:1 -c:a libmp3lame -b:a 128k output.mp3'. You can identify available audio tracks by running 'ffmpeg -i input.mov' and reading the stream listing in the output.
Replace '128k' in the '-b:a 128k' flag with your desired bitrate. For example, use '-b:a 320k' for the highest standard MP3 quality, which is suitable for music, or '-b:a 64k' for small file sizes when audio quality is less critical, such as for voice recordings. The full command at 320k would be: 'ffmpeg -i input.mov -c:a libmp3lame -b:a 320k output.mp3'.
Yes. On macOS or Linux, you can loop over all MOV files in a folder with: 'for f in *.mov; do ffmpeg -i "$f" -c:a libmp3lame -b:a 128k "${f%.mov}.mp3"; done'. On Windows Command Prompt, use: 'for %f in (*.mov) do ffmpeg -i "%f" -c:a libmp3lame -b:a 128k "%~nf.mp3"'. This applies the same conversion settings to every MOV file in the current directory.

Technical Notes

The libmp3lame encoder used in this conversion is the reference open-source LAME implementation, which produces MP3 files compatible with virtually every device, platform, and media player in existence — from web browsers to car stereos. The default bitrate of 128k CBR (constant bitrate) is the historical 'standard' MP3 quality, offering a reasonable balance between file size and perceptual quality. For critical listening, 192k or 320k CBR is recommended; alternatively, libmp3lame supports variable bitrate encoding via '-q:a' (0–9 scale, lower is better), which often achieves better quality-per-bit than CBR but is not used in this tool's default command. One important limitation: if the source MOV contains audio encoded as PCM (lossless), the conversion to MP3 introduces lossy compression for the first time, and you should use the highest bitrate your use case allows. MOV files from Apple devices or professional NLEs like Final Cut Pro almost always use AAC audio, so this is a transcode between two lossy formats. The output MP3 supports ID3v2 tags for metadata, but QuickTime-specific fields such as reel names or timecode are not preserved.

Related Tools