I'm trying to stream an MP4 video stored in my server.
I'm using this class in my project like this:
$vs = new VideoStream($path_to_my_file);
$vs->start();
and in my html page:
<video controls="" preload="none" poster="assets/video/bg.png" name="media" style="width:100%;">
<source src="path/to/my/page.php" type="video/mp4">
</video>
anytime I press play everything goes well, but I cannot move through the timeline. I can only play and pause the video.