VideoBinary
video/x-ms-wmv
Windows Media Video
Reference for video/x-ms-wmv, Microsoft's proprietary video format used in Windows Media Player and legacy systems.
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: .wmv
HTTP Content-Type Header
HTTP Header
Content-Type: video/x-ms-wmvAssociated File Extensions
.wmv
Quick Facts
| MIME Type | video/x-ms-wmv |
| Category | Video |
| Type | Binary |
| Extensions | .wmv |
Common Usage
WMV was Microsoft's proprietary video format, used in Windows Media Player and early streaming services. It supported DRM for content protection.
While largely replaced by MP4, WMV files are still found in corporate archives, training videos, and legacy Windows applications.
Code Examples
HTML
<!-- Link or embed with explicit type -->
<link rel="stylesheet" href="file.wmv" type="video/x-ms-wmv">
<!-- Or for script/media elements -->
<script type="video/x-ms-wmv" src="file.wmv"></script>Node.js
// Express.js
app.get('/file', (req, res) => {
res.type('video/x-ms-wmv');
res.send(data);
});
// Node.js http
res.writeHead(200, { 'Content-Type': 'video/x-ms-wmv' });nginx
# nginx.conf — add to types block or use default
types {
video/x-ms-wmv wmv;
}
# Or set for a specific location
location /api/ {
default_type video/x-ms-wmv;
}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.