Extract Audio from MOV to OGG — Free Online Tool
Extract audio from MOV files and convert it to OGG format using the open-source Vorbis codec — ideal for web delivery, Linux applications, and open-format workflows. The conversion strips the video track entirely and re-encodes the AAC or MP3 audio from your QuickTime file into a freely licensed, patent-unencumbered Vorbis stream.
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 from Apple devices and professional editing tools typically carry AAC audio alongside a video stream. This tool discards the video entirely (using the -vn flag) and re-encodes the audio track into a new OGG container using the libvorbis encoder. Because AAC and Vorbis use fundamentally different compression algorithms, a full decode-and-reencode is required — the audio is decoded from AAC to uncompressed PCM, then re-compressed using Vorbis variable-bitrate encoding at quality level 4 (which targets roughly 128 kbps). This means there is a small, usually imperceptible generation of quality loss, as is normal with any lossy-to-lossy transcoding. The resulting OGG/Vorbis file is significantly smaller than the original MOV and is compatible with all major open-source media players and web browsers via the HTML5 audio element.
What Each Flag Does
| Flag | What it does |
|---|---|
ffmpeg
|
Invokes the FFmpeg command-line tool, which handles all the demuxing, decoding, encoding, and muxing steps needed to extract and convert audio from a MOV file into OGG/Vorbis format. |
-i input.mov
|
Specifies the input QuickTime MOV file. FFmpeg will read and demux all streams from this file — video, audio, and any subtitle or chapter tracks — though subsequent flags determine which streams are actually processed. |
-vn
|
Disables video output entirely, ensuring the MOV's video stream (typically H.264 or ProRes) is discarded and not included in the OGG output. OGG does not support video in standard usage, so this flag is essential for a clean audio-only extraction. |
-c:a libvorbis
|
Selects the libvorbis encoder to convert the MOV's audio (typically AAC) into the Vorbis format. Vorbis is the native and most widely supported audio codec for OGG containers, and libvorbis is the reference open-source implementation from Xiph.Org. |
-q:a 4
|
Sets the Vorbis variable-bitrate quality to level 4 on a 0–10 scale, which targets approximately 128 kbps. This is the default quality setting, balancing file size and audio fidelity — suitable for music and speech extracted from typical MOV recordings. |
output.ogg
|
Defines the output filename and tells FFmpeg to wrap the encoded Vorbis audio stream in an OGG container. FFmpeg infers the container format from the .ogg file extension, producing a standard OGG/Vorbis file compatible with open-source players and web browsers. |
Common Use Cases
- Extracting the audio from a Final Cut Pro or Premiere Pro MOV export to distribute as an OGG audio file on a website using the HTML5 audio tag without licensing concerns
- Converting Apple device screen recordings or QuickTime captures into OGG for use in open-source game engines like Godot, which natively prefer OGG/Vorbis for background music and sound effects
- Stripping the video from a MOV interview recording to produce an OGG audio file for a podcast feed or audio archive hosted on a Linux server
- Preparing audio extracted from MOV footage for use in open-source video editors like Kdenlive or OpenShot that handle OGG/Vorbis natively without requiring additional codec packs
- Converting a MOV music video or performance recording to OGG for distribution on open music platforms like Jamendo or Free Music Archive that prefer patent-free formats
- Extracting and converting voiceover or narration tracks from MOV project files into OGG for use in e-learning content where open formats reduce licensing overhead
Frequently Asked Questions
Yes, there is a small quality loss because both AAC and Vorbis are lossy codecs, and going from one lossy format to another requires a full decode-reencode cycle. The audio is decompressed from AAC back to raw PCM and then recompressed using Vorbis. At the default quality setting of -q:a 4 (roughly 128 kbps), the degradation is typically inaudible for speech and most music, but audiophiles working with high-quality source material may notice subtle artifacts. If your MOV contains a lossless audio track (such as PCM or FLAC), there will be no source-side quality loss — only the Vorbis encoding step introduces compression.
OGG/Vorbis has broad support in modern browsers including Chrome, Firefox, and Edge, but Safari on macOS and iOS has historically had limited or no native OGG support due to Apple's preference for AAC. For cross-browser HTML5 audio, it's common practice to provide both an OGG and an MP3 or AAC source using the HTML5 audio element's multiple source fallback. If your primary audience uses non-Apple devices or Firefox, OGG/Vorbis is an excellent, royalty-free choice.
By default, this FFmpeg command maps only the best-ranked audio stream from the MOV file — typically the first or primary audio track. If your MOV contains multiple audio tracks (such as a stereo mix alongside a separate dialogue track), the additional tracks are not automatically included in the output OGG. OGG does technically support multiple audio streams, but for most use cases a single Vorbis stream is expected. If you need to extract a specific audio track, you can modify the command locally by adding a -map flag such as -map 0:a:1 to select the second audio track.
MOV files can embed chapter markers, and OGG also supports chapter metadata through a Vorbis comment format called chapter extension tags. However, FFmpeg does not automatically transfer MOV chapter markers to OGG chapter tags during this conversion — the chapter data is typically discarded. If chapter preservation is critical, you would need to manually re-tag the output OGG file using a tool like EasyTAG or mp3tag after conversion.
The -q:a 4 flag controls Vorbis variable-bitrate quality on a scale from 0 (lowest, around 64 kbps) to 10 (highest, around 500 kbps). To increase quality, change it to -q:a 6 or -q:a 8; to reduce file size at the cost of fidelity, try -q:a 2 or -q:a 1. For example: ffmpeg -i input.mov -vn -c:a libvorbis -q:a 6 output.ogg. Unlike the fixed-bitrate -b:a parameter used in some formats, Vorbis -q:a is a true variable-bitrate quality target, so the actual bitrate will vary depending on the complexity of the audio content.
Yes. On Linux or macOS, you can use a shell loop: for f in *.mov; do ffmpeg -i "$f" -vn -c:a libvorbis -q:a 4 "${f%.mov}.ogg"; done. On Windows Command Prompt, use: for %f in (*.mov) do ffmpeg -i "%f" -vn -c:a libvorbis -q:a 4 "%~nf.ogg". This browser-based tool processes one file at a time, so the local FFmpeg command is particularly useful for bulk conversion jobs or files larger than 1GB.
Technical Notes
MOV is Apple's QuickTime container and almost universally stores audio as AAC when produced by iOS devices, macOS screen recording, or Final Cut Pro. Because AAC is a proprietary, patent-encumbered codec and OGG/Vorbis is fully open and royalty-free, this conversion is a common requirement in open-source and Linux-oriented workflows. The libvorbis encoder used here is the reference Vorbis implementation maintained by Xiph.Org and produces fully standards-compliant OGG/Vorbis output. The -q:a quality scale is logarithmic in nature rather than linear, so the difference between quality 4 and 5 is more noticeable than between 8 and 9. Metadata such as artist, title, and album tags stored in the MOV file's QuickTime metadata atoms may be carried over by FFmpeg into Vorbis comment tags in the OGG output, though complex or non-standard MOV metadata fields may be silently dropped. Stereo channel layout is preserved by default. Note that OGG does not support subtitles or video streams, so any QuickTime subtitle tracks or embedded timecode data in the source MOV is permanently discarded — this tool is strictly for audio extraction.