Skip to content
Server-sideDeleted in 30 minutes

Convert AAC to WAV

Decode an AAC file into an uncompressed WAV. A bare `.aac` file is a raw audio stream with no container around it, which is why some software will not touch it even though it handles AAC perfectly well inside an M4A or an MP4 — the codec is familiar and the wrapper is missing. Converting to WAV removes the question entirely.

Use this without the search next time. Prathom Workbench puts Prathom's tools in your toolbar.

Add to Chrome — free
AACWAV

Drop your AAC file here, or click to browse

Up to 50 MB. Deleted automatically after 30 minutes.

What it does

  • Uncompressed 16-bit PCM output
  • Handles raw AAC streams with no container
  • For software that rejects bare .aac files
  • No watermark and no sign-up

How to use AAC to WAV

  1. 1

    Add the AAC

    Drop the file in or choose it from your computer, up to 50 MB, no account needed.

  2. 2

    Convert

    The AAC stream is decoded to 16-bit PCM and written into a WAV container.

  3. 3

    Open it in anything

    WAV is the format every audio tool reads, including those that refuse a container-less stream.

A codec without a container

Most audio you meet is a codec inside a container. AAC inside MP4 gives you an M4A. Vorbis inside Ogg gives you a .ogg. The container holds the structural information: sample rate, channels, duration, where each piece of audio starts.

A bare .aac file is the codec on its own, with none of that. It is a valid thing to have — broadcast chains and streaming systems produce them routinely, because a raw stream is easier to pass around and cut than a container is — but it puts software in an awkward position. Anything written to read containers first has nowhere to begin.

That is why the same audio can be perfectly acceptable as an M4A and rejected as a .aac. The problem is not the codec, which is thoroughly supported. It is that there is no envelope.

How it works

The AAC stream is decoded to 16-bit PCM samples and written into a WAV container. WAV supplies exactly the structural information the bare stream was missing, and does it in a format that predates every argument about codecs — every audio tool ever written reads a WAV.

Nothing encodes on the way out. The samples are stored as they are, which is why the file grows about tenfold.

Wrapping is sometimes better than decoding

If the only problem is the missing container, there is a better answer than this one. Putting the same AAC stream into an MP4 container produces an M4A without decoding or re-encoding anything at all — the audio is untouched, the file stays small, and software that wanted a container is satisfied. A desktop tool such as ffmpeg does this in a second.

Choose WAV when the software genuinely wants uncompressed PCM rather than a container. Analysis tools, transcription engines and older editors usually do, and for them no amount of rewrapping helps.

What decoding does not do

It does not recover anything. AAC discarded what its encoder judged inaudible when the file was made, and that material is not stored in compressed form somewhere inside — it was not written down at all. A WAV made from an AAC is a large, exact copy of a reduced recording, which is a useful thing and not a better one.

Examples

A raw AAC stream an editor will not open

audio.aac
audio.wav

Broadcast and streaming workflows produce bare AAC. Editors that read AAC happily inside an MP4 sometimes refuse the same audio without a container.

Audio extracted from a stream for analysis

capture.aac
capture.wav

Analysis and measurement tools generally want PCM, both to avoid a decoder dependency and to keep the codec out of the measurement.

Frequently asked questions

Why will some software open an M4A but not a .aac file?

Because a bare AAC file has no container, and a container is what tells software the sample rate, channel count and where the audio begins. An M4A wraps the same AAC in an MP4 structure that answers all of that. Software written to read containers rather than raw streams therefore handles one and not the other, even though the codec is identical.

Does the audio improve when converted to WAV?

No. AAC is lossy, so the encoder permanently removed what it judged inaudible before the file ever existed. Decoding reconstructs what the file describes, completely and at full precision, and that is what it already sounded like. The only change is the size and what software will accept it.

How much larger is the WAV?

Roughly ten times, and it depends only on the length and the sample rate rather than on the content. Uncompressed stereo at CD quality is about ten megabytes a minute, whether the audio is a full mix or silence, because every sample is written at full size.

Should I convert to WAV or to M4A?

Depends why the software refused it. If the problem is the missing container, wrapping the same AAC into an M4A keeps the audio untouched and is the better answer. If the software genuinely wants uncompressed PCM — as analysis and transcription tools usually do — then WAV is what it needs and there is no way around decoding.