AudioBinary
audio/wav
WAV
Reference for audio/wav, the uncompressed audio format providing lossless quality for recording and production.
MIME Type Detector
Drop a file to detect its MIME type — no upload, runs in your browser
📄
Drop any file here or click to choose
Expected extensions: .wav, .wave
HTTP Content-Type Header
HTTP Header
Content-Type: audio/wavAssociated File Extensions
.wav.wave
Quick Facts
| MIME Type | audio/wav |
| Category | Audio |
| Type | Binary |
| Extensions | .wav, .wave |
Common Usage
WAV stores uncompressed PCM audio data, providing perfect quality at the cost of large file sizes. It is the standard format for audio recording, music production, sound design, broadcast, and any workflow where quality is paramount and file size is secondary.
Code Examples
HTML
<!-- Link or embed with explicit type -->
<link rel="stylesheet" href="file.wav" type="audio/wav">
<!-- Or for script/media elements -->
<script type="audio/wav" src="file.wav"></script>Node.js
// Express.js
app.get('/file', (req, res) => {
res.type('audio/wav');
res.send(data);
});
// Node.js http
res.writeHead(200, { 'Content-Type': 'audio/wav' });nginx
# nginx.conf — add to types block or use default
types {
audio/wav wav wave;
}
# Or set for a specific location
location /api/ {
default_type audio/wav;
}Related MIME Types
More Audio MIME Types
Other audio types in the Audio family
Related Tools
Explore More MIME Types
Browse our complete reference of 185 MIME types with usage examples, HTTP headers, and code snippets.