Context:
Fiddling with javascript.
Html5 browser.
Question:
Is it possible to have, say, two video blobs and buffer their content in a video tag and play them smoothly without concatenating them at first ?
The underlying is : is it possible to dynamically add data to the video buffer in javascript in the browsers at any moment (the video may have already started to play and we still add data from a blob after that)?
All the solutions seems to need the whole data at the beginning.