Send PHP Command To Unload Live Stream
Is there anyway that i could send a php command to unload a live stream?
For instance i would like to click a logout button that would then tell the server that im logging off that live stream.. Any help here would be great!
**EDIT**
Here is what i have in my SWF file now..
Stage.scaleMode = "exactFit";
var nc:NetConnection = new NetConnection();
nc.connect("rtmp://MY.IP/live/"+ confid);
var ns:NetStream = new NetStream(nc);
mycam = Camera.get();
mymic = Microphone.get();
myvid.attachVideo(mycam);
mycam.setQuality(84500,0);
mymic.setRate(11);
ns.attachAudio(mymic);
ns.attachVideo(mycam);
ns.publish(+ uname);
I am sending flashvars to fill in the variables. And this is actionscript 2 because i havent ventured to AS3.
Thanks
