Let's say I have an ogg video. I can play it like that :
<video width="640" height="480">
<source src="myvideo.ogg" type=video/ogg>
</video>
Now if I managed to stream 1ko chunks base64 encoded of this video through an HTML5 websocket, how could I play the video ? I can't figure this out. I can decode the chunks if needed.
Thanks in advance, Nolhian