I am trying to publish an audio stream. It works. However, I observed
a strange behavior while looking in sniffer. Client disconnects and
reconnects at regular interval (around 284 frames) while streaming.
Any insight on why client is doing this and how to stop this behavior.
Below is client code

var nc:NetConnection = new NetConnection();
nc.connect("rtmp:/store/test");
var ns:NetStream = new NetStream(nc);
var mic:Microphone = Microphone.get();
mic.setSilenceLevel(0);
ns.attachAudio(mic);
ns.publish("demo", "live");

_______________________________________________
Red5 mailing list
Red5@osflash.org
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to