Re:Streaming Video
The HTTP protocol doesn't allow for streaming data. The best you can do with
it is to change the MIME document type to video/avi and hope the client got
a streaming AVI reader. The probleme, at this point, is that the client will
probably try to save the AVI data to the disk and if you're sending a
continuous stream, it can result in quite large files.
Another way to handle this kind of probleme is to write a dedicated client
software (like the Real Video player) that will receive the data, buffer
some of it (to mke for the net's irregular data transfer rate), play it and
finally discard the outdated data (the one that has already been playeed).
Good luck,
Stephane
Quote
Miles wrote in message <01be1187$bf744d80$6a201e8e@ldbdj6>...
>I would like to create an application that will take video input (from a
>device) and create a video stream that can be sent over the internet. I
>have already built the part that reads the video and can preview it on
>screen or save to an avi.
>Do you sample frames and create a bunch of compressed images which you
>"push" to the browser? In other words, how is this done?
>Hope somebody has some pointers or information sources to get me started.