keecode logokeecode
Home / MIME Types / audio/aac

audio/aac

AAC audio

Audio
.aac

MIME Type

Media Type

audio/aac

File Extension

.aac

Usage Examples

HTTP Response Header

Content-Type: audio/aac

HTML Link Tag

<link rel="stylesheet" type="audio/aac" href="style.css">

JavaScript Fetch API

fetch('/api/data', {
  headers: {
    'Content-Type': 'audio/aac'
  }
})

Express.js (Node.js)

res.setHeader('Content-Type', 'audio/aac');
res.send(data);