I need to add video player for my video files. Can any one help me to add? Is there any free players on web?
This is a Flash solution. While many video sites use Flash for this functionality, this may not be the best thing in the future... HTML5 sounds better, or the JQuery way
Maxim Zaslavsky
2010-03-08 11:52:11
+3
A:
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
Marcos Placona
2010-03-08 11:48:00
No i tried this code is not supported for my browser. Pls can u tell me some other method?
2010-03-08 12:03:44
Love the jQuery method, suited my needs perfectly. Send the correct markup and leave it up to the client!
januszstabik
2010-10-05 09:20:15
A:
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.
coder
2010-03-08 11:52:15