Question
Setting buffer time on rtmp stream
I have the following code:
var nc:NetConnection = new NetConnection();
nc.client = { onBWDone: function():void{} };
var ns:NetStream;
nc.connect("rtmpe://url/");
ns = new NetStream(nc);
ns.bufferTime = 5;
On ns.play(), I expecting a 5 second buffer to occur before the stream starts to play. Is my expectation incorrect?