Link to home
Start Free TrialLog in
Avatar of ForLoop5
ForLoop5Flag for United States of America

asked on

broadcast intranet webcam onto internet

I set up a web cam on my network to broadcast chickens hatching.  The computer that is broadcasting the web cam is part of our network.  I embedded the video on a web page and am able to view it from anywhere inside of our network.   I have not tested the video outside of the network yet.  I will, just need to start the broadcast.     I am guessing that the broadcast will not be visible outside of our network because I referenced the computer by ip address in the code I used to embed the broadcast. The IP address of the computer is served by dhcp in our network.  
<!--- BEGIN PLAYER --->
<!-- webbot bot="HTMLMarkup" startspan ---->
<object ID="MediaPlayer" WIDTH="300" HEIGHT="300" CLASSID="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" STANDBY="Loading Windows Media Player components..." TYPE="application/x-oleobject" CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112">
 
<param name="autoStart" value="True">
<param name="filename" value="http://192.168.165.50:8080">
<param NAME="ShowControls" VALUE="False">
<param NAME="ShowStatusBar" VALUE="False">
<embed TYPE="application/x-mplayer2" SRC=192.168.165.50:8080" NAME="MediaPlayer" WIDTH="300" HEIGHT="300" autostart="1" showcontrols="0"></embed></object>
<!-- webbot bot="HTMLMarkup" endspan ---->
<!--- end PLAYER --->

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of zulazen
zulazen

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial