FLAC to AIFF Converter

Inspect a FLAC file in your browser, then follow the FFmpeg command guide or use the quality settings builder to convert FLAC to lossless AIFF.

Inspect a FLAC File

Drop a FLAC file to preview metadata and audio. Nothing is uploaded to any server.

FLAC vs. AIFF — At a Glance

FLAC

  • Lossless compression (40–60% smaller)
  • Rich Vorbis comment metadata
  • Open standard, cross-platform
  • Not natively supported in Logic Pro / GarageBand

AIFF

  • Uncompressed PCM — zero decoding overhead
  • Native in Logic Pro, GarageBand, Pro Tools
  • Supports loop, marker, and instrument metadata chunks
  • Larger file size (uncompressed PCM)

Drop a FLAC file on the left to inspect it

Or scroll down to use the FFmpeg guide and quality builder directly

FFmpeg Command Builder

Choose your settings and copy the ready-to-run terminal command.

ffmpeg -i input.flac -c:a pcm_s16be output.aiff

AIFF Bit Depth Reference

Bit Depth FFmpeg Codec Dynamic Range Size / min (stereo 44.1 kHz)
16-bit pcm_s16be 96 dB ~10.1 MB
24-bit pcm_s24be 144 dB ~15.2 MB
32-bit int pcm_s32be 192 dB ~20.2 MB

AIFF uses big-endian byte order. All sizes above assume stereo, 44.1 kHz, 60 seconds of audio.

Batch Conversion Commands

macOS / Linux (bash)

for f in *.flac; do ffmpeg -i "$f" -c:a pcm_s16be "${f%.flac}.aiff"; done

Windows (PowerShell)

Get-ChildItem *.flac | ForEach-Object { ffmpeg -i $_.FullName -c:a pcm_s16be ($_.BaseName + ".aiff") }
Copied!

Summary

Inspect a FLAC file in your browser, then follow the FFmpeg command guide or use the quality settings builder to convert FLAC to lossless AIFF.

How it works

  1. Drop or select a FLAC file to load it into the browser audio engine.
  2. The tool reads the audio stream and displays duration, sample rate, channel count, and file size.
  3. Use the built-in player to preview the audio before converting.
  4. Copy the generated FFmpeg command and run it in your terminal to produce the AIFF file.
  5. Use the quality settings builder to customise sample rate and bit depth for your DAW.
  6. Your file is never uploaded — all metadata reading and playback happens locally in your browser.

Use cases

  • Prepare lossless FLAC tracks for import into Logic Pro or GarageBand on macOS.
  • Convert FLAC music archives to AIFF for playback on Apple hardware and iTunes.
  • Supply AIFF files to sample libraries or instruments that require the format.
  • Round-trip between FLAC and AIFF without any quality loss.
  • Verify FLAC metadata (sample rate, bit depth, duration) before batch conversion.
  • Generate the correct FFmpeg command for scripted or automated batch conversion.
  • Understand file-size trade-offs between compressed FLAC and uncompressed AIFF.
  • Convert FLAC stems to AIFF for mixing sessions in Pro Tools or Nuendo.

Frequently Asked Questions

Last updated: 2026-06-09 · Reviewed by Nham Vu