Many video stream websites, youtube for example, seem to have a blob url as their video source. Searching, I couldn't figure out how this works. For example...
<video src="blob:https://www.youtube.com/ea375257-e9a8-4c3f-9cef-d8cf0f3ae53f"></video>
URL.createObjectURL(), the only way to get a blob url, takes in a File, Blob, or MediaSource object. Since the video is being streamed new data has to added constantly, and File and Blob don't seem to have that option, while MediaSource does, but is marked as an experimental feature on developer.mozilla.org...
My question is how does this process, of streaming video through a blob url, work?