keecode logokeecode
Home / MIME Types / video/quicktime

video/quicktime

QuickTime video

Video
.mov

MIME Type

Media Type

video/quicktime

File Extension

.mov

Usage Examples

HTTP Response Header

Content-Type: video/quicktime

HTML Link Tag

<link rel="stylesheet" type="video/quicktime" href="style.css">

JavaScript Fetch API

fetch('/api/data', {
  headers: {
    'Content-Type': 'video/quicktime'
  }
})

Express.js (Node.js)

res.setHeader('Content-Type', 'video/quicktime');
res.send(data);