How to add video player navigation for videos in html [closed]
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this que开发者_如何学JAVAstionI need to add video player for my video files. Can any one help me to add? Is there any free players on web?
Easiest way ever. With HTML5, you can simply use the video tag.
<!DOCTYPE HTML>
<html>
<body>
<video src="movie.ogg" controls="true">
your browser does not support the video tag
</video>
</body>
</html>
If not on HTML5, I'd suggest using the jQuery media plugin
Two ways of doing
HTML5
<video src="movie.ogg" controls="true"></video>
many browser like firefox, chrome already supporting this.
use flash player and embed the video
simply use embed tag to embed an object. There is a issue here. browser needs to support this.
精彩评论