BufferTimeMax with Live Streams
I have a video-chat program that uses FMS and I'm trying to use the bufferTimeMax property on the subscribing NetStream, but it doesn't seem to work. When I manually throttle my download speed, the live stream from the other client just lags and becomes more and more backed up. When checking the bufferLength and liveDelay at this point, it does show values over 0 but it's not reflecting how backed up it really is, and no matter what I set the bufferTimeMax to, it always traces as being 0.
I'm publishing to Flash v. 10.3 using Flash CS6 pro. Publishing to v. 11.2 doesn't help.
Code sample:
videoNS.bufferTimeMax = 3;
trace(1, videoNS.bufferTimeMax);
videoNS.play(streamName, startParam);
videoNS.bufferTimeMax = 3;
trace(2, videoNS.bufferTimeMax);
This returns:
1 0
2 0
Any ideas?
