AudioBinary
audio/flac
FLAC
Reference for audio/flac, the lossless audio compression format popular with audiophiles and music archives.
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: .flac
HTTP Content-Type Header
HTTP Header
Content-Type: audio/flacAssociated File Extensions
.flac
Quick Facts
| MIME Type | audio/flac |
| Category | Audio |
| Type | Binary |
| Extensions | .flac |
Common Usage
FLAC provides lossless audio compression, typically reducing file sizes by 50-70% compared to WAV without any quality loss. It is the preferred format for music enthusiasts, audio archives, lossless music streaming (Tidal, Amazon Music HD), and mastering workflows.
Code Examples
HTML
<!-- Link or embed with explicit type -->
<link rel="stylesheet" href="file.flac" type="audio/flac">
<!-- Or for script/media elements -->
<script type="audio/flac" src="file.flac"></script>Node.js
// Express.js
app.get('/file', (req, res) => {
res.type('audio/flac');
res.send(data);
});
// Node.js http
res.writeHead(200, { 'Content-Type': 'audio/flac' });nginx
# nginx.conf — add to types block or use default
types {
audio/flac flac;
}
# Or set for a specific location
location /api/ {
default_type audio/flac;
}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.