HTML5 video currentTime and buffering

I have a buffering problem. On my page (to which I connect remotely) I have a video that I position using the currentTime attribute. However, it seems that despite the fact that I am not an autobuffer, the video is still buffered to this position.

It is right? Is there a way I can look for this position without reading the video up to this point?

Thanks in advance.

Sincerely.

+4
source share
1 answer

Assuming you are linking to a video object via http, you probably need to enable pseudo-streaming on your web server, otherwise all the video will be transferred, even if browsers can send &start= parameters to the request.

Have a look here: http://www.longtailvideo.com/support/jw-player/jw-player-for-flash-v4/12207/video-delivery-http-pseudo-streaming

and another comment here: http://www.longtailvideo.com/support/blog/11887/html5-video-not-quite-there-yet

0
source

Source: https://habr.com/ru/post/1310360/


All Articles