AIFF to WAV Converter

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

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" -acodec pcm_s16le "output.wav"

Batch Convert (Linux / macOS)

for f in *.aiff; do
  ffmpeg -i "$f" -acodec pcm_s16le "${f%.aiff}.wav"
done

Batch Convert (Windows CMD)

for %f in (*.aiff) do ffmpeg -i "%f" -acodec pcm_s16le "%~nf.wav"

Summary

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

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 bit depth (16-bit or 24-bit) and sample rate.
  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 studio recordings to WAV for compatibility with Windows-native DAWs.
  • Prepare audio files for use in game engines that require WAV format.
  • Convert macOS GarageBand AIFF exports to WAV for cross-platform sharing.
  • Normalize sample rate and bit depth when integrating files from different sources.
  • Batch-convert an entire AIFF library to WAV using the provided shell loop.
  • Transfer audio between Apple and non-Apple software without quality loss.
  • Archive lossless audio in WAV for maximum software compatibility.

Frequently Asked Questions

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