Initializing... drag & drop files here
Supports: WAV
.wav files from your computer. Batch conversion is supported — every file gets the same output settings.HH:MM:SS.mmm or plain seconds — useful for clipping a single voice prompt out of a longer recording before exporting to AU.WAV (Waveform Audio File Format) is the Microsoft/IBM RIFF container released in 1991, almost always carrying uncompressed PCM and capped at roughly 4 GiB by its 32-bit size field. AU is the simple audio container introduced by Sun Microsystems for Unix workstations and NeXT systems; the headerless original was 8-bit μ-law data at 8000 Hz, and the format later grew to carry 8/16/24/32-bit PCM, μ-law, A-law, ADPCM, and IEEE float payloads. Converting WAV to AU is useful when:
java.applet.AudioClip API and older javax.sound.sampled pipelines were designed around .au files; old applets and Java tutorials still ship sound effects as 8-bit, 8 kHz, μ-law AU clips./dev/audio on SunOS/Solaris exposed μ-law natively, and many scientific computing and signal-processing pipelines on Unix still expect AU input..au is a first-class format in SoX (sox in.wav out.au) and is widely read by analysis tools where you want a known-byte-order container without RIFF chunk parsing.| Property | WAV | AU |
|---|---|---|
| Released by | Microsoft + IBM (1991) | Sun Microsystems (early 1990s) |
| Container | RIFF chunks (little-endian) | Flat header (big-endian) |
| Common payloads | PCM 8/16/24/32-bit, IEEE float | PCM 8/16/24/32, μ-law, A-law, ADPCM, float |
| Default sample rate | 44.1 kHz (CD), 48 kHz (DAT/DVD) | 8 kHz μ-law (historical default) |
| Max file size | ~4 GiB (32-bit size field) | Practically unlimited |
| Strongest ecosystem | Windows, DAWs, broadcast | Unix, NeXT, Java, scientific computing |
| Metadata support | LIST/INFO chunks, BWF, iXML | Minimal (annotation string only) |
| Setting | Use case | Result |
|---|---|---|
| 44.1 kHz stereo, PCM 16-bit | Music, CD-quality archive | Same data rate as input WAV (~1.4 Mbps) |
| 48 kHz stereo, PCM 16-bit | Video/DAW interchange | Matches broadcast/DVD audio rate |
| 22.05 kHz mono, PCM 16-bit | Game/UI sound effects | ~50% size vs CD-quality |
| 16 kHz mono, PCM 16-bit | Speech recognition (ASR) corpora | Standard rate for many ASR models |
| 8 kHz mono, μ-law AU | Java AudioClip, telephony, IVR | ~8x smaller than CD-quality |
Yes. If your WAV is 16-bit PCM at 44.1 kHz stereo and you keep Audio Channel and Sample Rate on "Original," the converter rewrites the same PCM samples into the AU container — the audio is byte-for-byte equivalent in value, just wrapped in Sun's header instead of RIFF chunks. Lossy reduction only happens if you downsample, downmix, or pick a μ-law/A-law output.
Mainly compatibility with software that predates modern formats: Java applets and tutorials, legacy Solaris/SunOS toolchains, scientific signal-processing scripts that read AU natively, and audio corpora distributed in .au for historical reasons (Sun's classic SPARCstation samples, several speech datasets). If you don't have one of those constraints, WAV, FLAC, or MP3 are usually better choices.
Not reliably. Windows Media Player, the iOS Files app, and Android's default audio apps don't ship AU support. To play an AU file on a modern desktop, use VLC, foobar2000, Audacity, or any player that bundles FFmpeg. On Unix, SoX (play file.au) and many distros' default media players handle it directly.
The traditional Java java.applet.AudioClip interface was designed around 8-bit, 8 kHz, mono μ-law AU files. If you're feeding old applet code or a textbook example, set Audio Sample Rate to 8000 Hz and Audio Channel to Mono. Modern javax.sound.sampled can read 16-bit PCM AU as well, so for newer Java code you can keep CD-quality settings.
Yes, when you select "Original" sample rate and channel and the codec is left at the default PCM mapping. The converter writes the AU file with the same bit depth as the source — 16-bit WAV becomes 16-bit PCM AU, 24-bit WAV becomes 24-bit PCM AU. The big-endian byte order is handled in the AU header (PCM_S16BE / PCM_S24BE), so receiving software reads samples correctly.
If you keep linear PCM with the same sample rate, bit depth, and channels, the AU file is essentially the same size as the WAV — the headers differ by only a few dozen bytes. If you pick μ-law at 8 kHz mono, expect roughly 1/8 the size of a 16-bit/44.1 kHz stereo WAV (about 60 KB per second instead of 176 KB per second).
Yes. Drop multiple .wav files onto the upload area and they queue up with shared settings. Each file is converted independently, so a failed file doesn't block the rest, and you can download them individually or as a zip when the batch finishes.
Use our AU to WAV page for the reverse, WAV to MP3 when you need a small file for general playback, WAV to FLAC when you want lossless compression at roughly half the WAV's size, or the general Audio Converter to target a different codec entirely.
Free conversions handle typical music and speech WAVs without trouble. WAV itself caps at about 4 GiB because of the 32-bit size field in its RIFF header, so any source you upload is already within that ceiling. For very large multi-hour recordings, compress the WAV first or split it into segments before converting.