How to cancel the "catch-up" feature for live streams?
When streaming a live stream, if you hide the browser window/tab (e.g. by going to a different tab or minimizing the browser) - where the live stream is playing in
and then after awhile you go back to it - then everything that "happened" in the live stream since the window was hidden - is played back in fast motion until it reaches to the "live point".
How can I cancel this functionality?
Someone pointed out to me this info:
http://help.adobe.com/en_US/FlashPlatform/beta/reference/actionscript/3/flash/net/NetStream.html#bufferTimeMax
But even when I set the following on both the receiveing and sendind sides:
ns.bufferTime = 0;
nsbufferTimeMax = 0;
ns.backBufferTime = 0;
ns.inBufferSeek = false;
ns.maxPauseBufferTime = 0;
this still happens.
I also tried setting the values to -1,
but it happened still.
Any way of canceling it out completely?