I'm looking for feature, that's implemented on youtube.
For example client have 100mbit download speed.
- Client pressed play
- Streaming server started streaming video file
- Client started to watch video
- Player keeps caching the rest of the video file
- After 1 minute client decided to close this video and chooses another video
- But streaming server already sent 750mb to a client...
On youtube player pre-caching chunks of file on demand. It's checking if client is still watching the video and pre-load next chunk and so on.
So basically a player which requests file chunks on demand.
How this feature is called in streaming specifications?
Thanks.