• April 18, 2024, 12:43:28 PM
  • Welcome, Guest
Please login or register.

Login with username, password and session length
Advanced search  

News:

This Forum Beta is ONLY for registered owners of D-Link products in the USA for which we have created boards at this time.

Author Topic: DSC-930L Putting stream on a webpage  (Read 9604 times)

markadam

  • Level 1 Member
  • *
  • Posts: 1
DSC-930L Putting stream on a webpage
« 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
Logged

davevon

  • Level 1 Member
  • *
  • Posts: 3
Re: DSC-930L Putting stream on a webpage
« Reply #1 on: February 08, 2011, 10:03:07 PM »

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??
Logged

davevon

  • Level 1 Member
  • *
  • Posts: 3
Re: DSC-930L Putting stream on a webpage
« Reply #2 on: February 15, 2011, 07:06:23 PM »

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>&nbsp;&nbsp;<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>
Logged

4711engel

  • Level 1 Member
  • *
  • Posts: 1
Re: DSC-930L Putting stream on a webpage
« Reply #3 on: September 07, 2015, 11:18:57 AM »

Hi,
I try to use your script but get a error message:

ClassNotFoundException     aplug.com

What can I do?

Greetings
Logged