Home > database >  Too many https requsets when web Rqeusting just a single MP4 Video
Too many https requsets when web Rqeusting just a single MP4 Video

Time:03-25

too many requests

as you can see in the picture, the chrome has download too many clips of a video when playing a video online.

In rear end, I use springboot WebMvcConfiguer to filter the requests, when request url has '/files/**', it will let the request get the video directly filter

how can i solve this request problem , and just make the request like this below

correct result

Many thanks

CodePudding user response:

I think this is due to the browser loading the video over time versus all at one time. This is typically done for performance reasons and it doesn't seem like chrome likes people working around it. Here is a link to another post about the same thing.

  • Related