Dan Rossi wrote:
Michael Klishin wrote:

, im returning true from onBroadcast method, i guess its not needed.
    

Remember that callback may have no result return so 3rd param is
optional.

  

Ok ive made a work around by stopping the live broadcast being subscribed more than once in that loop

public function onBroadcast(streamName:String):void
{
    if (!isLive)
    {
        play(streamName);   
        isLive = true;
        ns.bufferTime = rebufferTime;
        currentBufferTime = rebufferTime;
        log.debug("Broadcaster Publishing on stream: " + streamName);
    }
}
_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to