I'm having a trouble with a video that is located in my web apache server.
This video I'm loading it on the index php page, but the problem is that it take too many time to load the video and start to reproduce.
Well, there's any way to load this video in a server cache, so that don't take too many time in load the video?
This is the code that loads the video into my html page:
<video id="mivideo" autoplay="autoplay" muted loop>
<source src="../video/video.mp4" type="video/mp4"></source>
</video>
Note; When I refresh the website in the same computer, for a couple of hours the video don't take too many time, because the web browser loads it into the cookies or local cache, but if I go to another computer, the video take long time to load, again...
Really thanks!