Manatee

How to convert an OGV (Theora) video to MP4 on a Mac

Converting an OGV file to MP4 on a Mac takes a video in an open format almost nothing on Apple plays and turns it into one that opens everywhere. Because an OGV holds Theora video and Vorbis audio, the conversion is a re-encode to H.264 and AAC rather than a straight copy, so it takes real time but produces a file QuickTime, Safari, and phones all accept. The fastest way is to drag the OGV onto a converter and choose MP4. Here is what OGV is and how to convert it well.

What OGV and Theora actually are

OGV is a video file in the Ogg container, an open format that usually carries Theora video and Vorbis audio. Theora and Vorbis are free, open codecs that were popular in the era when the open web wanted a video format not tied to patent licenses, so OGV shows up in older website assets, exports from open-source tools, and downloads from sites like Wikimedia that favor open formats.

Like any video file, an OGV is a container wrapping streams: the Theora video and Vorbis audio are the real content, and the Ogg box holds them together. Quality lives in those streams. Theora is a capable but dated codec, roughly a contemporary of early H.264, and it is far less widely supported. That support gap is the whole reason you are converting: the file plays fine in a few open-source players, and nowhere near as broadly as you need.

Why the Mac ignores your OGV

Apple never adopted the Ogg family. QuickTime Player, Photos, Preview, and Safari do not decode Theora or Vorbis, so double-clicking an OGV on a Mac typically does nothing, and dropping one into iMovie or Final Cut gets you a refusal. The video inside is usually fine; the problem is that neither the container nor its codecs are formats Apple’s software knows.

MP4 is the opposite: it is the universal box, built around H.264 and HEVC video with AAC audio, and every Apple app and device plays it without fuss. Converting an OGV to MP4 swaps the open-but-unsupported combination for the widely-supported one, which is why the file suddenly works everywhere afterward.

Convert an OGV to MP4 with a re-encode

Because MP4 does not carry Theora or Vorbis in any form Apple plays, this conversion has to decode both streams and compress them again as H.264 and AAC. That is a re-encode, so it is not perfectly lossless, but a good encode keeps the result visually indistinguishable from the source for normal viewing.

With ffmpeg installed and a comfort for Terminal, a reliable command is:

ffmpeg -i input.ogv -c:v libx264 -crf 20 -c:a aac -b:a 192k output.mp4

The -crf value controls quality: lower means better and larger, and 20 is a sensible setting that holds detail. The audio is rebuilt as AAC. Because every frame is decoded and recompressed, expect the encode to run at roughly real time or a little faster on Apple silicon, so a ten-minute clip finishes in a few minutes and slower on Intel.

The drag-and-drop way

If codec flags are not how you want to spend your time, Manatee converts OGV to MP4 from its window or a drag onto its menu bar icon:

  1. Open Manatee and choose Convert.
  2. Pick MP4 as the target.
  3. Drop the OGV in, or a whole folder of them. Each file appears in the job list with progress.
  4. The MP4 is written alongside the original, which is never modified.

Manatee handles the Theora and Vorbis decoding and picks sensible H.264 and AAC settings, so you get a working MP4 without touching a command line. It runs entirely on your Mac with nothing uploaded, and it bundles its own conversion engine, so there is nothing to install first. One honest note: Manatee is a converter, not an editor, so trimming, cropping, and adjusting the picture stay in an editing app. If your source is precious and you want to verify the encode settings yourself, the ffmpeg route above gives you that control.

Getting a good result from an old codec

Theora footage is often lower resolution and lower bitrate than modern video, so two habits keep the MP4 looking its best. First, convert from the original OGV rather than a copy that has already been through another encode, because each pass gives up a little more detail. Second, do not upscale during conversion: if the OGV is 480p, keep the MP4 at 480p rather than stretching it to 1080p, which only adds size without adding real detail. If the finished MP4 needs to be smaller for a message or an upload, treat that as its own step done once, using a size-targeted shrink from the best source, so you are not stacking re-encodes.

Questions

Why does the conversion take longer than the video is long sometimes?

Because it is a full re-encode: every frame is decoded from Theora and recompressed as H.264, which is real work. On Apple silicon it usually runs faster than real time, but a large or high-resolution clip, or an older Intel Mac, can push it past the running time of the video itself.

Can I keep the audio exactly as it is?

Not into an MP4 Apple plays, because Vorbis audio is not a format QuickTime decodes, so the audio is re-encoded to AAC. At a reasonable bitrate such as 192k the difference is inaudible for speech and most music.

The OGV will not open at all, even in a converter. What now?

If it fails everywhere, the file may be damaged rather than merely unsupported. A repair pass is the route before conversion, and Manatee’s Repair mode reports honestly whether it recovered the file fully, only partially, or not at all. Convert the recovered file once it opens.

Should I convert to MP4 or MOV?

Choose MP4 for the widest reach across phones, browsers, and the web, which is almost always what you want when leaving OGV behind. Pick MOV only if a specific Apple editing app asks for a QuickTime movie.