I have videos locally in my web server and I want to embed it into a html document. I want to have a player to allow the user to stop the video, to control the sound, to continue seeing it. Do you know any video player free to achieve it?
Asked
Active
Viewed 1,991 times
1 Answers
2
Are you sure a player is needed, seeing as you'd like HTML5, it's built in!
<!DOCTYPE HTML>
<html>
<head>
<title>HTML5 BUILT IN Video Player</title>
</head>
<body>
<video controls>
<source src="https://www.w3schools.com/tags/mov_bbb.webm">
<source src="https://www.w3schools.com/tags/mov_bbb.mp4">
Your browser does not support HTML5 Video.
</video>
</body>
</html>
Use the video tag...

Henry7720
- 116
- 1
- 9
-
I used the tag `video`with a mp4 video and it doesn't work. Maybe wrong configurated. – MrScf Jan 16 '18 at 00:34
-
1Well, you have to make sure the file is on your webserver! Otherwise use the syntax for just one format: `` – Henry7720 Jan 16 '18 at 00:35