VideoBinary

video/quicktime

QuickTime

Reference for video/quicktime, Apple's QuickTime movie format used in macOS and professional video 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: .mov, .qt

HTTP Content-Type Header

HTTP Header
Content-Type: video/quicktime

Associated File Extensions

.mov.qt

Quick Facts

MIME Typevideo/quicktime
CategoryVideo
TypeBinary
Extensions.mov, .qt

Common Usage

QuickTime MOV is Apple's multimedia container format, widely used in professional video production. Final Cut Pro, Adobe Premiere, and other NLEs use MOV as a working format.

iPhone video recordings use MOV by default. It supports ProRes, H.264, H.265, and other codecs.

Code Examples

HTML
<!-- Link or embed with explicit type -->
<link rel="stylesheet" href="file.mov" type="video/quicktime">

<!-- Or for script/media elements -->
<script type="video/quicktime" src="file.mov"></script>
Node.js
// Express.js
app.get('/file', (req, res) => {
  res.type('video/quicktime');
  res.send(data);
});

// Node.js http
res.writeHead(200, { 'Content-Type': 'video/quicktime' });
nginx
# nginx.conf — add to types block or use default
types {
    video/quicktime  mov qt;
}

# Or set for a specific location
location /api/ {
    default_type video/quicktime;
}

Related MIME Types

More Video MIME Types

Other video types in the Video family

Related Tools

Explore More MIME Types

Browse our complete reference of 185 MIME types with usage examples, HTTP headers, and code snippets.