How can I play fragments of a video passing through an HTML5 website?

Say I have an ogg video. I can play like this:

<video width="640" height="480"> <source src="myvideo.ogg" type=video/ogg> </video> 

Now, if I was able to transfer 1 pieces of base64 encoded by this video through the HTML5 web layout, how can I play the video? I can’t figure it out. If necessary, I can decode the pieces.

Thanks in advance, Nolhian

+7
source share
1 answer

Take a look at this . The solution does the same thing you want!

0
source

All Articles