1<video controls poster="/images/w3html5.gif">
2 <source src="movie.mp4" type="video/mp4">
3 <source src="movie.ogg" type="video/ogg">
4 Your browser does not support the video tag.
5</video>
1Try appending #t={seconds} to the end of your src value. Here's an example:
2
3<video width="300" height="150">
4 <source src="testvideo.mp4#t=0.1" type="video/mp4" />
5</video>
6
7It works fine on Chrome/Firefox and many other browsers.