AudioBinary
audio/x-aiff
AIFF
Reference for audio/x-aiff, Apple's uncompressed audio format equivalent to WAV for music production on macOS.
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: .aiff, .aif, .aifc
HTTP Content-Type Header
HTTP Header
Content-Type: audio/x-aiffAssociated File Extensions
.aiff.aif.aifc
Quick Facts
| MIME Type | audio/x-aiff |
| Category | Audio |
| Type | Binary |
| Extensions | .aiff, .aif, .aifc |
Common Usage
AIFF (Audio Interchange File Format) is Apple's uncompressed audio format, functionally equivalent to Microsoft's WAV. It is used in professional audio production on macOS, GarageBand, Logic Pro, and applications where macOS-native uncompressed audio is preferred.
Code Examples
HTML
<!-- Link or embed with explicit type -->
<link rel="stylesheet" href="file.aiff" type="audio/x-aiff">
<!-- Or for script/media elements -->
<script type="audio/x-aiff" src="file.aiff"></script>Node.js
// Express.js
app.get('/file', (req, res) => {
res.type('audio/x-aiff');
res.send(data);
});
// Node.js http
res.writeHead(200, { 'Content-Type': 'audio/x-aiff' });nginx
# nginx.conf — add to types block or use default
types {
audio/x-aiff aiff aif aifc;
}
# Or set for a specific location
location /api/ {
default_type audio/x-aiff;
}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.