I am trying to preload 20 videos at the same time using HTML5 tag
<video id="video-detail-<%=id%>" class="video-js vjs-default-skin"
loop
autoplay="none"
width="640" height="360">
<source src="movie.mp4" type="video/mp4" />
</video>
These videos are inside Bootstrap popovers as templates. To make this video automatically, I use videoJS, which listens for the mouseover event
I have a lot of CPU usage, especially in Chrome.
source
share