Weather Display is streaming it Ryan? Look on the Webcam Capture setup and see what address it's streaming to.
should be your IP address with the port number too.
What URL do you have WD set to stream to? You'll need to open up a port on your router and the way
I do it, I use my IP address within this page:
there are other ways to do this hiding your IP address and such also.
<?php
############################################################################
# A Project of TNET Services, Inc. and Saratoga-Weather.org (WD-USA template set)
############################################################################
#
# Project: Sample Included Website Design
# Module: sample.php
# Purpose: Sample Page
# Authors: Kevin W. Reed <kreed@tnet.com>
# TNET Services, Inc.
#
# Copyright: (c) 1992-2007 Copyright TNET Services, Inc.
############################################################################
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
############################################################################
# This document uses Tab 4 Settings
############################################################################
require_once("Settings.php");
require_once("common.php");
############################################################################
$TITLE= $SITE['organ'] . " - LIVE Streaming Weather Webcam";
$showGizmo = true; // set to false to exclude the gizmo
include("top.php");
############################################################################
?>
</head>
<body>
<?php
############################################################################
include("header.php");
############################################################################
include("menubar.php");
############################################################################
?>
<div id="main-copy">
<br/><center><div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#appId=167354743329165&xfbml=1"></script><fb:like href="http://facebook.com/CNYweather" send="false" layout="button_count" width="65" show_faces="false" font=""></fb:like>
<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="cnyweather">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
<!-- Place this tag where you want the +1 button to render -->
<g:plusone size="medium"></g:plusone>
<h1>LIVE Webcam Image</h1>
<br>
<table id="table1" width="80%" border="1">
<tr>
<td width="414" class="style2">
<span class="style3"><strong><br>
Live Stream of the front webcam looking at the front yard<br>
<br>
</strong><br>
Cam Location: Corner of West Carter Rd. and Lower Lawrence Street Westmoreland, New York<br>
<br/>
<OBJECT ID="MediaPlayer"
WIDTH="680" HEIGHT="570"
CLASSID="CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6"
STANDBY="Loading Windows Media Player ..." TYPE="application/x-oleobject">
<PARAM name="url" VALUE="http://your.ip.address.here:portnumber">
<PARAM name="ShowControls" VALUE="true">
<param name="ShowStatusBar" value="false">
<PARAM name="ShowDisplay" VALUE="false">
<PARAM name="autostart" VALUE="true">
<EMBED TYPE="application/x-mplayer2"
src="http://your.ip.address.here:portnumber">" name="MediaPlayer"
width="680" height="570"
ShowControls="0" ShowStatusBar="0" ShowDisplay="0"
autostart="1">
</EMBED>
</OBJECT>
<br>
</strong>
</span>
<br>
<br>
</td>
</tr>
</table>
<p><img src="/images/DCS-930L-Angle.jpg" width="175" height="210" alt="DCS-930-L"><br>
<br>
This weather cam is a D-Link DCS 930-L Wireless Network Camera<br>
with images uploaded and movies made with Weather Display WebCam Capture Software</p>
</p>
</div><!-- end main-copy -->
<?php
############################################################################
include("footer.php");
############################################################################
# End of Page
############################################################################
?>