AIFF to OGG Converter

Drop or select an AIFF file to inspect its details, then copy the FFmpeg command to convert it to OGG Vorbis.

Drop your AIFF file here, or browse

.aiff and .aif files — nothing is uploaded

Conversion Options

Or Type a Filename Manually

Use this if you already know the filename and do not want to select a file.

FFmpeg Command

ffmpeg -i "input.aiff" -codec:a libvorbis -q:a 4 "output.ogg"

Batch Convert (Linux / macOS)

for f in *.aiff; do
  ffmpeg -i "$f" -codec:a libvorbis -q:a 4 "${f%.aiff}.ogg"
done

Batch Convert (Windows CMD)

for %f in (*.aiff) do ffmpeg -i "%f" -codec:a libvorbis -q:a 4 "%~nf.ogg"

About AIFF and OGG Vorbis

AIFF Uncompressed Apple format. Lossless, large files. Common in GarageBand and Pro Tools on macOS.
OGG Free, open-source, patent-free lossy format. Excellent quality-to-size ratio. Widely supported in games, browsers, and Linux systems.
Converting AIFF to OGG is a one-way lossy process. Keep your AIFF originals if you need lossless copies.

Summary

Drop or select an AIFF file to inspect its details, then copy the FFmpeg command to convert it to OGG Vorbis.

How it works

  1. Select or drag-and-drop your AIFF file into the drop zone.
  2. The tool reads the filename and size locally — nothing is uploaded.
  3. Choose your target OGG Vorbis quality level (0–10 scale).
  4. Click "Copy Command" to copy the FFmpeg command to your clipboard.
  5. Paste the command in your terminal and run it to convert the file.

Use cases

  • Convert AIFF recordings to OGG for web audio delivery.
  • Reduce file size while maintaining good quality for game audio assets.
  • Batch-convert multiple AIFF files using the same FFmpeg pattern.
  • Create OGG files for use in HTML5 games or browser-based applications.
  • Archive large AIFF masters while keeping compressed OGG copies for distribution.
  • Convert macOS GarageBand AIFF exports for cross-platform use.
  • Prepare audio for open-source projects that prefer patent-free formats.
  • Optimize audio for Linux environments where OGG has native support.

Frequently Asked Questions

Last updated: 2026-07-01 · Reviewed by Nham Vu