I would like use an html5 input field for editing video and audio timecode. Unfortunately, I cannot seem to find a good way to do this. I want to display and edit:
- hours, minutes, seconds, and milliseconds.
Here is what my investigation turns up thus far:
<input type="datetime-local"> displays day, month, year, am/pm information (not needed).

<input type="time"> does not display milliseconds information (needed) and displays am/pm information (not needed).

Do I need a custom widget? Does one exist? Can I modify the existing html5 widgets?