Re: [Cortado] How to support seeking in on-the-fly generated Theora stream?
David Schueler <[email protected]> Mon, 23 May 2011 14:44:18 +0200
| Newsgroups | gmane.comp.multimedia.ogg.theora.devel |
|---|---|
| Message-ID | <OF044AF479.68211263-ONC1257899.0045906A-C1257899.0045F9D8@tel-billig.de> |
Tom Sparks <[email protected]> wrote on 05.23.2011 02:16:11 PM: > I think byte-range serving[1] would be easy to do > or use Chunked transfer encoding[2] > > [1] http://en.wikipedia.org/wiki/Byte_serving > [2] http://en.wikipedia.org/wiki/Chunked_transfer_encoding Hello Tom, thanks for your reply. The problem is that the data is generated on the fly. So there is no buffering possible on the server. I want to keep the traffix on the server low, so the best practice is to transfer all data to the client, which can seek in its buffer. For example Flash does the same. So i think doing HTTP Content-Range requests and holding the data buffered on the server is no option for me.