VideoBinary
video/3gpp2
3GPP2 Video
Reference for video/3gpp2, the CDMA mobile video format used in North American legacy mobile networks.
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: .3g2, .3gp2
HTTP Content-Type Header
HTTP Header
Content-Type: video/3gpp2Associated File Extensions
.3g2.3gp2
Quick Facts
| MIME Type | video/3gpp2 |
| Category | Video |
| Type | Binary |
| Extensions | .3g2, .3gp2 |
Common Usage
3GPP2 is the video container format for CDMA mobile networks. Similar to 3GPP but optimized for CDMA systems formerly used by carriers like Verizon and Sprint.
It supports MPEG-4, H.263, and H.264 video with AMR and EVRC audio codecs.
Code Examples
HTML
<!-- Link or embed with explicit type -->
<link rel="stylesheet" href="file.3g2" type="video/3gpp2">
<!-- Or for script/media elements -->
<script type="video/3gpp2" src="file.3g2"></script>Node.js
// Express.js
app.get('/file', (req, res) => {
res.type('video/3gpp2');
res.send(data);
});
// Node.js http
res.writeHead(200, { 'Content-Type': 'video/3gpp2' });nginx
# nginx.conf — add to types block or use default
types {
video/3gpp2 3g2 3gp2;
}
# Or set for a specific location
location /api/ {
default_type video/3gpp2;
}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.