PHP: how to play all type of videos using tag?
The HTML have a <video></video> tag for playing the .mp4 video.
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
<source src="movie.webm" type="video/webm">
</video>
Now If you have not above three type of video then don't warry.
You shoude convert video in above three (mp4, ogg, webm) formate from here: http://video.online-convert.com/
HTML - Video browser supported table:
| Browser | MP4 | WebM | Ogg |
|---|---|---|---|
| Internet Explorer | YES | NO | NO |
| Chrome | YES | YES | YES |
| Firefox | YES | YES | YES |
| Safari | YES | NO | NO |
Enjoy!
No comments:
Post a Comment