audio/mpegaudio/mpeg is the media type for MP3 (MPEG-1/2 Audio Layer III) audio. Its lossy compression greatly shrinks music files while keeping acceptable quality, making it long the flagship format for digital audio and podcasts.
The key to serving audio on the web is range-request support. To play in an `<audio>` element or let users seek forward/backward, the server must advertise `Accept-Ranges: bytes` and answer the client's `Range: bytes=...` request with 206 Partial Content. Without it, users must download the whole file before seeking, hurting the experience.
MP3 is already-compressed binary, so transport-layer gzip yields nothing. Watch out for extension confusion: `.mp3` is audio/mpeg, while `audio/mp3` is an incorrect label, and MPEG-4 audio (AAC, .m4a) is a separate audio/mp4. For endless streams like internet radio, use chunked transfer or a dedicated protocol such as HLS.
e.g. Content-Type: audio/mpeg