I tried a simple example for HTML5, but it doesn't seem to work.
<!DOCTYPE html> <html> <body> <video width="320" height="240" controls="controls"> <source src="resources/sample/sample1.m4v" type="video/mp4" /> </video> </body> </html>
I tried the example on chrome, the video loads, but it does not play, I can see the frames of the video if I move the slider back and forth, but the video itself does not play.
UPDATE: I accessed this on localhost (tomcat), it still reacts the same way. I also noticed that I can not play HTML5 video on Chrome or Firefox (updated).
source share