Any idea why?

I'm trying to publish a live video on my local network...
Locally on my pc works fine, feed and player, but when i go lo local host feed still working but no one can see the cam.

here is my code:

feed:
var nc:NetConnection = new NetConnection();
nc.connect("rtmp://localhost/videoApp");

var ns:NetStream = new NetStream(nc);
ns.attachVideo(Camera.get());

vid.attachVideo(Camera.get());

ns.publish("chrisCam", "live");



player:

var nc:NetConnection = new NetConnection();
nc.connect("rtmp://localhost/videoApp");

var ns:NetStream = new NetStream(nc);

vid.attachVideo(ns);

ns.play("chrisCam");
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to