How to Play 3gp Video in HTML5?

Mayk picture Mayk · Nov 4, 2012 · Viewed 23.9k times · Source

Playing a 3gp file with HTML5 does not work. I have Firefox 16 and Chromium Version 22 and the result I got is the following:

No video with supported format and MIME type found.

Here's the code I used:

<video controls="controls">
<source src="rtsp://v2.cache2.c.youtube.com/CiQLENy73wIaGwlkcZfgin6szRMYDSANFEgGUghzdGFuZGFyZAw=/0/0/0/video.3gp" type="video/3gpp">
Your browser does not support the video tag.
</video>

Answer