I deal with HTML5 video. I have a video working using the HTML5 vanilla tag <video>, something like this:
<video id="video" width="250" height="250" controls>
<source src="video_src.mp4" type="video/mp4">
</video>
Things are good. What I'm looking for is a way to have an extra search bar at the bottom of the video. The arrow will be the image that represents the video. By clicking anywhere in the image, the video will move to that point.
Again, this will work in addition to the default execution bar, which comes with the default video functionality. The default and custom search bar must be synchronized, so when one is updated, the other moves as well.
Can someone point me in the right direction?
Thank!
source
share