audio/ogg
Ogg packages compressed audio for open media pipelines and browser delivery where patent-free formats are preferred.
Content-Type header
Content-Type: audio/oggHow teams usually encounter it
This page maps the media type to the file extensions and delivery behaviors developers usually care about: browser parsing, upload validation, cache correctness, and asset handling.
Compression signal
audio/ogg is usually already compressed or stored in a binary-heavy format, so extra transfer compression tends to help less.
Server config snippets
Use these when a server is missing the right extension-to-MIME mapping or you want the expected header to survive a proxy, CDN, or custom asset bucket setup.
types {
audio/ogg ogg;
}AddType audio/ogg .oggMagic bytes / file signature
When you need to validate uploads or investigate a mislabeled file, the signature often starts with 4F 67 67 53.
Operational shortcut
If a browser downloads this asset instead of rendering it correctly, check the response header first, then verify the extension mapping on your origin and edge cache. .ogg is the fastest sanity check for teammates reviewing the file outside the app.
Related audio types
audio/aac
AAC balances quality and bitrate for streaming and mobile delivery, which is why it appears in media pipelines and device exports.
.aacaudio/mpeg
MPEG audio covers MP3-style delivery for podcasts, downloads, and compatibility-first publishing workflows.
.mp2audio/mp4
Audio-only MP4 containers are common when streaming systems reuse MPEG-4 packaging without a video track.
.m4aaudio/wav
WAV keeps audio close to source quality, so it is widely used in editing, archiving, and speech-processing pipelines.
.wavaudio/x-flac
FLAC preserves audio fidelity while shrinking file size, making it popular in archival libraries and high-quality distribution.
.flac