D-Link Forums

D-Link FAQ => Network Camera FAQs => Topic started by: JavaLawyer on August 07, 2012, 01:56:35 PM

Title: DCS-9XXL - Display Live Video on a Personal Website
Post by: JavaLawyer on August 07, 2012, 01:56:35 PM
This procedure illustrates an HTML code snippet that can be included in a personal website to display a live video stream from a DCS-930L or DCS-932L camera. This code may work with additional D-Link DCS IP cameras, but was only tested on the DCS-930L and DCS-932L as of the posting of this thread.

Procedure


HTML Code


          <html>
             <head>
                <title>LiveVideo</title>
                <META content="text/html"; charset="UTF-8"; http-equiv=Content-Type>
                <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
                <META HTTP-EQUIV="Expires" CONTENT="-1">
             </head>
          <body>
          LiveVideo by acellier, rev. 2012-08-06  1740

          <tr><div class="box">
          <TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0>
          <tr><td bgcolor=black > <font color=white> CameraName <BR></font>
          </td></tr> </TABLE>   
          <iframe src="http://myWANip:port#/video.cgi" width="640" height="480"
          class="smart_sizing_iframe noresize" frameborder="0" scrolling="no" ></iframe>
          </div></tr>

             </body>
                <HEAD>
                <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
                <META HTTP-EQUIV="Expires" CONTENT="-1">
             </HEAD>
          </html>


Browser Tests


Additional Resources


Content for this solution submitted by forum member: acellier (http://forums.dlink.com/index.php?action=profile;u=37470)