After reading some tutorials it looks like this is how to embed a video with html5:
<html>
<body>
<video width="560" height="340" controls>
<source src="big_buck_bunny.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
</video>
</body>
</html>
(That video is in the same directory has the .html file)
When I do this, I see the control bar, but the video doesn't seem to load/play. Anyone know what could be wrong?
Thanks,
David