Convert MOV to M4A — Free Online Tool
Extract and convert the audio track from a QuickTime MOV file into an M4A file encoded with AAC — the native audio format used by Apple iTunes, Music, and Podcasts. Since both MOV and M4A share the same MPEG-4 container lineage, this conversion is fast and produces high-quality audio with minimal overhead.
to
FFmpeg Command
Copy this command to run the same conversion locally with FFmpeg on your desktop. Download FFmpeg
Drop your MOV file here
or click to browse
Free — no uploads, no signups. Your files never leave your browser.
Settings
Note: Browser-based encoding uses approximate quality targets. For precise CRF compression, copy the FFmpeg command above and run it on your desktop.
Estimated output:
Conversion Complete!
DownloadHow It Works
MOV files are QuickTime containers that typically carry both video and audio streams. When converting to M4A, FFmpeg strips the video stream entirely and extracts only the audio. If the MOV file already contains an AAC audio track — which is common since AAC is the default audio codec for MOV — the audio data can be passed through with minimal or no re-encoding, preserving the original quality. The resulting M4A file is an MPEG-4 container holding only the AAC audio stream, a format natively recognized by Apple devices, iTunes, and most modern media players. Chapter markers present in the original MOV file can also be retained in the output M4A.
What Each Flag Does
| Flag | What it does |
|---|---|
ffmpeg
|
Invokes the FFmpeg program. In the browser-based version of this tool, FFmpeg runs locally via WebAssembly (FFmpeg.wasm), meaning your MOV file never leaves your device. |
-i input.mov
|
Specifies the input QuickTime MOV file. FFmpeg reads all streams present in the MOV container — video, audio, and any metadata — and makes them available for processing. |
-c:a aac
|
Sets the audio codec to AAC (Advanced Audio Coding), which is the native and default codec for the M4A container. AAC is Apple's preferred audio format and is required for full compatibility with iTunes, Apple Music, and Apple Podcasts. |
-b:a 128k
|
Sets the AAC audio bitrate to 128 kilobits per second. This is a widely accepted standard for high-quality stereo audio; AAC at 128k is generally considered perceptually transparent for most listening scenarios, and produces M4A files roughly half the size of a 320k MP3. |
-vn
|
Disables video output entirely, stripping the video stream from the MOV file so that only the audio track is written to the M4A output. This flag is required because M4A is an audio-only container and cannot hold video data. |
output.m4a
|
Specifies the output filename with the .m4a extension, telling FFmpeg to write the result into an MPEG-4 audio container. The .m4a extension is specifically recognized by Apple devices and media players as an audio-only file distinct from .mp4 video files. |
Common Use Cases
- Extract the stereo music mix from a Final Cut Pro or DaVinci Resolve MOV export to create a distributable audio file for iTunes or Apple Music
- Pull the audio from a screen recording (e.g., a QuickTime .mov captured on macOS) to produce a podcast episode or narration clip without video
- Convert iPhone video MOV clips to M4A to isolate the audio for voice memos, interviews, or field recordings
- Reduce file size for archiving by extracting only the audio track from large MOV video files where the video content is no longer needed
- Prepare audio from a professional video edit for upload to Apple Podcasts, which prefers AAC-encoded M4A files
- Strip video from a MOV-based music video or live performance recording to create a portable audio-only version for your music library
Frequently Asked Questions
It depends on what audio codec is already in your MOV file. If the MOV already contains AAC audio — which is the default for most Apple and iOS-recorded MOV files — the conversion can pass the audio through with no quality loss and no re-encoding. If the MOV contains a different audio codec such as PCM or an uncompressed track, FFmpeg will re-encode it to AAC at the specified bitrate (default 128k), which introduces some lossy compression. For music or high-fidelity content, raising the bitrate to 256k or 320k in that case will preserve more detail.
M4A is a strictly audio-only container format. The '.m4a' extension signals to devices and media players that the file contains only an audio stream, which is why it is used for music and podcasts rather than video. The '-vn' flag in the FFmpeg command explicitly drops the video stream during conversion. If you need to keep the video, you should convert to MP4 or a similar video container instead.
Yes, M4A does support chapter markers — it is one of the few audio-only formats that does. If your MOV file was exported from a video editor with chapter markers embedded, FFmpeg can carry those through to the M4A output. This makes M4A a good choice for long-form audio like audiobooks, lecture recordings, or podcast episodes where navigation between sections is useful. Note that chapter support in the player depends on the app — iTunes and Apple Podcasts handle M4A chapters natively.
Replace the '-b:a 128k' value with your preferred bitrate. For example, use '-b:a 256k' for higher-quality audio suitable for music, or '-b:a 96k' to reduce file size for voice-only content like podcasts. The full command with a higher bitrate would look like: ffmpeg -i input.mov -c:a aac -b:a 256k -vn output.m4a. AAC at 128k is generally considered transparent for most listeners, but 192k or 256k is recommended if the source is a professional audio mix.
Yes. On macOS or Linux, you can loop over all MOV files in a directory with a shell one-liner: for f in *.mov; do ffmpeg -i "$f" -c:a aac -b:a 128k -vn "${f%.mov}.m4a"; done. On Windows using Command Prompt, use: for %f in (*.mov) do ffmpeg -i "%f" -c:a aac -b:a 128k -vn "%~nf.m4a". The browser-based tool on this page handles single files, so the FFmpeg command is especially valuable for batch processing large collections.
M4A with AAC audio has broad compatibility across modern platforms. Android devices, VLC, Windows Media Player (with codec support), Spotify, and most podcast apps play M4A natively. However, some older or budget devices may not recognize the .m4a extension even though the underlying AAC codec is supported. In those edge cases, renaming the file to .mp4 or re-muxing to an MP4 container (without re-encoding the audio) is a simple workaround. For maximum universal compatibility, MP3 remains an alternative but trades metadata richness and gapless playback for broader legacy support.
Technical Notes
The MOV-to-M4A conversion leverages the shared MPEG-4 heritage of both containers, making it one of the more efficient audio extraction workflows available in FFmpeg. Because MOV files produced by Apple devices (iPhones, QuickTime, Final Cut Pro) almost universally use AAC as the audio codec, FFmpeg can frequently stream-copy the audio without decoding and re-encoding — though the '-c:a aac' flag in this command instructs explicit AAC encoding to ensure output compatibility. If your priority is lossless pass-through, you can test adding '-c:a copy' instead, though this only works cleanly when the source audio is already AAC. M4A does not support multiple audio tracks — if your MOV has multiple audio tracks (e.g., stereo mix plus a separate dialogue track), only the first track will be included by default; use '-map 0:a:1' to select a specific track. iTunes and Apple Music metadata tags (artist, album, artwork) can be embedded in M4A using FFmpeg's '-metadata' flags, making this format particularly well-suited for music library management. One known limitation: M4A does not support subtitle or closed-caption streams, so any subtitle data in the source MOV will be discarded during conversion.