What is MIME type "video/quicktime"?

A MIME type is a string that tells browsers and other tools how to handle a particular kind of file.

The MIME type video/quicktime is used to deliver multimedia content in the QuickTime format. It acts as a versatile container for video, audio, and interactive data.

Files using this MIME type carry complex media information. They support features like synchronized audio and video, embedded metadata, and even interactive elements. For example, file types such as MOV and QT use this format. Other related formats include MP3, QIF, M4P, QTI, QTIF, QTM, and QTVR.

For more technical details, visit the Apple QuickTime Developer Page.

Associated file extensions

Usage Examples

HTTP Header

When serving content with this MIME type, set the Content-Type header:


    Content-Type: video/quicktime    
  

HTML

In HTML, you can specify the MIME type in various elements:


    <a href="file.dat" type="video/quicktime">Download file</a>    
  

Server-side (Node.js)

Setting the Content-Type header in Node.js:


    const http = require('http');    
    
    http.createServer((req, res) => {    
      res.setHeader('Content-Type', 'video/quicktime');    
      res.end('Content here');    
    }).listen(3000);    
  

Associated file extensions

FAQs

Which file extensions are associated with the video/quicktime MIME type?

The primary file extensions for this MIME type are .mov and .qt. While it can technically be associated with other formats like .mp3 or .qtvr in legacy contexts, it is standard practice to use video/quicktime specifically for QuickTime movie container files.

Does the HTML5 video tag support video/quicktime?

Support is limited. While Apple Safari natively supports video/quicktime and .mov files in the HTML5 <video> tag, other browsers like Chrome, Firefox, and Edge often require videos to be converted to MP4 (video/mp4) or WebM (video/webm) for consistent playback.

How do I configure Apache to serve MOV files correctly?

To ensure your Apache server sends the correct headers, add the following line to your .htaccess file or main configuration: AddType video/quicktime .mov .qt. This ensures browsers recognize the file as a QuickTime video rather than a generic binary download.

How do I add video/quicktime support to an Nginx server?

In Nginx, you should verify that the mime.types file includes the definition. If missing, add this inside your types block: video/quicktime mov qt;. After saving, reload Nginx using sudo nginx -s reload to apply the changes.

What is the difference between video/quicktime and video/mp4?

The video/quicktime type denotes the QuickTime File Format (QTFF), typically using the .mov extension. The video/mp4 type denotes the MPEG-4 Part 14 standard. Although MP4 is based on the QuickTime format, video/mp4 is more widely supported across non-Apple devices and modern web browsers.

Why won't my video/quicktime file play in Windows Media Player?

Windows Media Player does not natively support the QuickTime container or the specific codecs (like Apple ProRes) often inside it. To fix this, you can convert the file to a standard MP4 or WMV format, or install a third-party player like VLC Media Player that handles MIME types universally.

Can video/quicktime contain audio only?

Yes, the QuickTime container is versatile and can hold purely audio tracks. However, for web delivery, it is better to use dedicated audio MIME types like audio/mpeg for .mp3 or audio/mp4 for .m4a files to ensure broader compatibility with audio players.

General FAQ

What is a MIME type?

A MIME (Multipurpose Internet Mail Extensions) type is a standard that indicates the nature and format of a document, file, or assortment of bytes. MIME types are defined and standardized in IETF's RFC 6838.

MIME types are important because they help browsers and servers understand how to process a file. When a browser receives a file from a server, it uses the MIME type to determine how to display or handle the content, whether it's an image to display, a PDF to open in a viewer, or a video to play.

MIME types consist of a type and a subtype, separated by a slash (e.g., text/html, image/jpeg, application/pdf). Some MIME types also include optional parameters.

How do I find the MIME type for a file?

You can check the file extension or use a file identification tool such as file --mime-type on the command line. Many programming languages also provide libraries to detect MIME types.

Why are multiple MIME types listed for one extension?

Different applications and historical conventions may use alternative MIME identifiers for the same kind of file. Showing them all helps ensure compatibility across systems.