It's an HTML page which I use only locally.
I have a link to a video in my HD like this:
<a href="/path/to/myvideo.mp4">Watch video</a>
When clicking it, it launches the video with VLC directly as expected. Now, I'd like to pass parameter inside like the starting time for this video.
In the shell for example you can do:
vlc /path/to/myvideo.mp4 --start-time=126
And it will launches the video at the 126 second point.
How can I do that with my HTML link? I've tried for example:
<a href="/path/to/myvideo.mp4?start-time=126">Watch video</a>
But it still launches it from the beginning of the video.