VideoBinary

video/x-msvideo

AVI

Reference for video/x-msvideo, Microsoft's legacy Audio Video Interleave container format for video files.

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: .avi

HTTP Content-Type Header

HTTP Header
Content-Type: video/x-msvideo

Associated File Extensions

.avi

Quick Facts

MIME Typevideo/x-msvideo
CategoryVideo
TypeBinary
Extensions.avi

Common Usage

AVI is a multimedia container format introduced by Microsoft in 1992. It can hold video and audio in various codecs.

While largely superseded by MP4 and MKV, AVI files are still encountered in legacy video archives, surveillance camera recordings, and older media collections.

Code Examples

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

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

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

# Or set for a specific location
location /api/ {
    default_type video/x-msvideo;
}

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.