Initializing... drag & drop files here
Supports: OGV
This conversion takes the audio track out of an Ogg video file and writes it as .au — the audio format Sun Microsystems introduced on NeXT and Solaris workstations, and the format Java's AudioClip reached for by default. The picture is discarded; only the sound is kept.
Two things about this page are unusual enough to state before anything else. First, there is no codec dropdown: the Audio Codec group renders with nothing selectable in it, so the encoding is decided server-side. Second, what it decides on is 8-bit G.711 mu-law, the telephone-grade companded encoding that AU has carried since 1992 — not linear PCM. That single fact explains the file size, the sound, and most of the questions below.
| Property | Value |
|---|---|
| Origin | Sun Microsystems / NeXT, in wide use from 1992 |
| Extensions | .au, .snd |
| File signature | .snd — the four ASCII bytes 2e 73 6e 64 |
| Header | Big-endian; 24 bytes minimum. Our output writes a 32-byte header, with the data offset field set to 32 |
| Header fields | Magic, data offset, data size, encoding, sample rate, channel count |
| Encoding written here | 8-bit G.711 mu-law — encoding field value 1 |
| Byte order | Big-endian (network byte order) throughout |
| Historically used by | NeXTSTEP, Sun Solaris, Java applets, Unix telephony tooling |
| Best for | Legacy Unix and Java pipelines, and code that wants a header it can parse in ten lines |
| Property | Value |
|---|---|
| Container | Ogg |
| Usual video payload | Theora, derived from On2 VP3; the bitstream was frozen in June 2004 |
| Usual audio payload | Vorbis — this is what gets decoded and re-encoded here |
| Typical Vorbis rate | 44,100 or 48,000 Hz, mono or stereo |
| Current Theora library | libtheora 1.2.0, released 29 March 2025 |
| Chrome | Disabled Theora by default in version 120; Chromium removed it in 123 |
| Firefox | Disabled Theora by default in version 126 |
| Safari | Never shipped Theora |
| Consequence | An .ogv will not play in a current browser, so check it in VLC or mpv before converting |
Vorbis is lossy, and G.711 mu-law is lossy again on top of it. Nothing in this conversion is an archival copy of anything.
.ogv onto the page or click "Add Files". Several files can be queued and they all run with the same settings. The file must actually contain an audio stream — see the last step for what happens when it does not..au. Files are uploaded over an encrypted connection, processed on our servers, and deleted automatically after a few hours — no sign-up, no watermark. If the .ogv carried no audio track at all, the job fails rather than handing back a silent file: there is nothing to encode, so no output is produced.There is no File Compression group on this page, and that is correct rather than missing — mu-law has no quality parameter. It always writes exactly one byte per sample per channel, so the output size is fixed by the sample rate, the channel count and the duration, and you can predict it before uploading. We measured a five-second test conversion at both ends of the range:
| Sample rate and channels | Bytes per second | Five seconds, measured | One minute |
|---|---|---|---|
| 48,000 Hz stereo (source rate kept) | 96,000 | 480,032 bytes | ≈ 5.5 MB |
| 44,100 Hz stereo | 88,200 | — | ≈ 5.0 MB |
| 16,000 Hz mono | 16,000 | — | ≈ 0.92 MB |
| 8,000 Hz mono (classic AU profile) | 8,000 | 40,032 bytes | ≈ 0.46 MB |
The 32 extra bytes in each measured figure are the header. Reading it back confirms what the encoder wrote: magic .snd, data offset 32, encoding field 1 for 8-bit mu-law, sample rate 48000, two channels.
Note what that means in the other direction. Mu-law at 48 kHz stereo runs at 768 kbit/s — many times the bitrate of the Vorbis track it came from — while sounding worse, because 8-bit companding is a coarser quantiser than Vorbis used. If your goal is a small file, AU is the wrong format entirely; OGV to MP3 is a fraction of the size and better quality.
Because none of the codec entries are offered for an AU target — the Audio Codec group renders as a heading with nothing under it, and the encoding is chosen server-side. The AU container itself can carry several encodings, and the converter's own table for .au lists mu-law, A-law and 16-bit big-endian PCM as the possibilities, but only the default is reachable from this page. That default is 8-bit G.711 mu-law, which is also what the format's original 1992 profile used.
No. G.711 mu-law compands roughly fourteen bits of dynamic range into eight bits per sample, which is a lossy step by definition, and it is applied to audio that Vorbis had already compressed lossily inside the .ogv. So the output is two lossy generations deep. AU can hold linear PCM, and a linear-PCM AU would be lossless relative to the decoded Vorbis, but that encoding is not selectable here.
Because mu-law does not compress in any meaningful sense — it writes a fixed byte per sample per channel. At 48 kHz stereo that is 96,000 bytes every second, or 768 kbit/s, while the Vorbis track inside the .ogv may have been running at 96 or 128 kbit/s and the whole file including video may have been smaller than the audio alone comes out here. Dropping Audio Channel to Mono halves it and dropping the sample rate cuts it proportionally, but the format has no compression setting to turn up.
The conversion fails and no file is produced. We confirmed this end to end: an Ogg file containing only a Theora video stream leaves the encoder with nothing to write, so the job errors out rather than handing back a silent .au. Nothing in the pipeline synthesises a silent track to fill the gap. If you are unsure, open the file in VLC and check whether the audio menu offers a track at all before you upload.
Only if the software receiving the file expects that profile. Dropping a 48 kHz Vorbis track to 8 kHz applies a low-pass at roughly 4 kHz and permanently removes everything above it — fine for a voice recording being fed to a telephony system, ruinous for music. The size saving is real (our test fell from 480,032 bytes to 40,032 for the same five seconds) but you are paying for it with bandwidth you cannot get back. Leave the rate on ORIGINAL unless you have a reason.
Because current browsers no longer decode Theora: Chrome disabled it by default in version 120 and Chromium removed it in 123, Firefox disabled it by default in version 126, and Safari never shipped it. VLC and mpv still play .ogv files perfectly, so open the file there, note the timestamps you care about, and type them into the Trim fields before converting.
Yes, and on this page it is the most effective way to keep the file manageable, because size scales exactly linearly with duration. Switch Trim from Unchanged to the time range and enter a Start time and a Duration in seconds or as HH:MM:SS.sss. The controls open at 0 and 10 respectively. Only that window is decoded and written.
No. The AU header stops after the channel count — magic, data offset, data size, encoding, sample rate, channels, and then the samples begin. There is an optional annotation area between the header and the audio, but nothing maps the Vorbis comment block into it, so titles, artist tags and any chapter information in the Ogg are dropped. Keep the original .ogv if that metadata matters.
Only when something specific asks for it — an old Solaris or NeXT tool, a Java program built around AudioClip, or a telephony pipeline that speaks G.711 natively. For anything you intend to listen to or share, OGV to MP3 is far smaller and better sounding, and OGV to WAV gives you uncompressed little-endian PCM that every editor on every platform opens without argument. AU's virtue is a header you can parse in a few lines, not its audio quality.
The .ogv is uploaded over an encrypted connection, decoded on our servers, and both the upload and the resulting .au are deleted automatically after a few hours. Files are never shared or made public, no watermark is added, and no account is required. Because the work runs server-side, the practical limit on a long recording is upload size and time rather than anything about your own machine.