I upload several videos on one page,
My code snippet is something like
<div class="video_content left"> <span style="font-weight:bold">1</span> <video width="213" height="120" controls class="video_tag"> <source src="<MY VIDEO SOURCE>" type="video/mp4" /> </video> </div> <div class="video_content left"> <span style="font-weight:bold">2</span> <video width="213" height="120" controls class="video_tag"> <source src="<MY VIDEO SOURCE>" type="video/mp4" /> </video> </div> <div class="video_content left"> <span style="font-weight:bold">3</span> <video width="213" height="120" controls class="video_tag"> <source src="<MY VIDEO SOURCE>" type="video/mp4" /> </video> </div> <div class="video_content left"> <span style="font-weight:bold">4</span> <video width="213" height="120" controls class="video_tag"> <source src="<MY VIDEO SOURCE>" type="video/mp4" /> </video> </div>
Sometimes I get 20+ videos on one page, so I will create these many video tags.
Whenever I try to use this code on my local host, it works fine, but if I host this code on a remote server and try to upload only a few videos, but there is no error message in my Chrome control.
I tried to reload the video one by one using jQuery with some time interval, while I get the warning "Preliminary headers are shown" in the chrome Inspect element.
Can someone help me solve this problem?
Thanks in advance.
source share