I have a simple HTML5 video player
<video width="100%" controls="controls">
<source src="" type="" />
</video>
and a simple form with textarea on a page. I would like to do a few things in order to make it easier for my clients to provide feedback on my videos:
If the user is in the textarea, when they start typing I would like to automatically pause the video and insert the current time code from the video into the textarea and then resume the video when they press enter for a new line. (If possible, this functionality should have an on/off button.)
I would also like to have a button above the textarea that would allow them to insert the videos current timecode into the text area (at the end of all current text).
Is this possible?
Many thanks in advance for any help.