video/ogg
OGG video
Video
.ogv
MIME Type
Media Type
video/ogg
File Extension
.ogv
Usage Examples
HTTP Response Header
Content-Type: video/ogg
HTML Link Tag
<link rel="stylesheet" type="video/ogg" href="style.css">
JavaScript Fetch API
fetch('/api/data', {
headers: {
'Content-Type': 'video/ogg'
}
})Express.js (Node.js)
res.setHeader('Content-Type', 'video/ogg');
res.send(data);When to Use This MIME Type
Video MIME types specify the video format and codec. Proper MIME types are essential for HTML5 video playback.