HTML5 <video> Element - Buffering Size, Quick Start Video

is there any way to specify the size of the buffering data for an element? Somewhere, how much data / seconds does the browser need to buffer?

I ask because we need to make the video shown as soon as possible, even if it means reducing the buffer size to an absolute minimum ...

We do not use a streaming protocol (e.g. HLS). Simple progressive download of a large video file ...

thank

Sten

+5
source share
1 answer
  • You cannot change the browser buffer size at this time

  • , - DOM (, jQuery onLoad)

    myVideo = document.getElementById("myVideoId");
    myVideo.load();
    myVideo.play();
    

    - iOS-. Apple .

+1

All Articles