D-Link Forums
The Graveyard - Products No Longer Supported => IP Cameras => DCS-930L => Topic started by: markadam on February 08, 2011, 11:01:33 AM
-
Hello;
I have a new DSC-930L and love it. I would like to be able to put the feed on one of my webpages for people to see. I am unable to figure it out. I am using it with a DIR-825 router. Does someone know where I can find decent instructions on how to do this? Thanks. Have a great day.
Mark
-
i'm trying to do the same thing.. stream video on my own page without having to force users to log into the camera. As of yet, i haven't found a way..
can you connect to your camera via the internet??
-
here is some code to paste on your webpage so you can stream your camera's video on your own page... it's the java flavor stream.. insert your internet address where indicated.
be sure your firewall is port forwarding port 80 to your camera's IP.
---------------------------------------
<html>
<head>
<link rel="stylesheet" rev="stylesheet" href="http://your ip here/dlink.css"type="text/css">
<title>D-Link Corporation. | WIRELESS INTERNET CAMERA | HOME | JAVA</title>
<META content="text/html; charset=windows-1252" http-equiv=Content-Type>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">
<SCRIPT LANGUAGE="JavaScript">
function Init() {
window.setInterval("ShowFrameRate()", 1000)
}
function ShowFrameRate() {
if (0)
{
var fFrameRate = cvcs.GetFrameRate()
window.status = "Frame:" + fFrameRate.toString() + " fps"
if (0)
CurrentFrame.innerHTML = "Frame:" + fFrameRate.toString() + " fps"
}
cvcs.GetRealTimeData()
CurrentTime.innerHTML = cvcs.GetTimeString()
}
</script>
</head>
<body topmargin="1" leftmargin="0" rightmargin="0" bgcolor="#757575" onLoad="Init()">
<table cellpadding="2" cellspacing="1" border="0" width="534" bgcolor="white" bordercolor="#FFFFFF">
<tr><td align="center">
<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0>
<tr>
<td bgcolor=black><font color=white>DCS-930L<BR></font></td>
<td bgcolor=black align=right valign=top> <font color=white><SPAN id="CurrentTime"></SPAN></font></td>
</tr>
<tr>
<td colspan=2 align=center bgcolor="white">
<APPLET name="cvcs" CODEBASE="http://your ip here:80/" CODE="aplug.class" WIDTH=640 HEIGHT=480>
<param name="RemotePort" value=80>
<param name="Timeout" value=5000>
<param name="RotateAngle" value=0>
<param name="PreviewFrameRate" value=2>
<param name="DeviceSerialNo" value="">
</APPLET>
</td>
</tr>
</TABLE>
</body>
</html>
-
Hi,
I try to use your script but get a error message:
ClassNotFoundException aplug.com
What can I do?
Greetings