I want to make a site that has videos, how do I embed mp4 videos on html? I have tried <embed src="helloworld.mp4">
but it doesn't work.
Asked
Active
Viewed 1.2k times
1

Komninos
- 96
- 1
- 1
- 10
-
What exactly doesn't work? – Ajoy May 09 '15 at 09:25
-
@KomninosK: refer this link http://stackoverflow.com/questions/12878068/video-format-or-mime-type-is-not-supported – pcs May 09 '15 at 09:51
3 Answers
9
In html5 you can use video tag
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
</video>

Simon
- 219
- 1
- 4
0
You should upload them on a host, then embed them.
(for example youtube, dailymotion, firedrive, sockshare)

o07l
- 25
- 4
0
<html>
<body>
<video width="320" height="240" controls>
<source src="video.mp4" type="video/mp4">
</video>
</body>
</html>

pcs
- 1,864
- 4
- 25
- 49

Parth Dhorda
- 712
- 1
- 8
- 32