Moarc: IP-Kamera auf Website

Beitrag lesen

Hallo,

wir haben bei uns in der Firma neuerdings 4 IP-Kameras von der Firma DigiLan zur überwachung.
Der Chef möchte nun gerne alle 4 Bilder der Kareas auf eine Internetseite haben, die nur bei uns im Intranet zu erreichen sein soll. Leider kenn ich mich nicht sehr gut mit Java aus, könnt ihr mir vielleicht weiterhelfen? Hier der Quelltext:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <title></title>
  <meta http-equiv="Content-Type" content="text/html">
  <link rel="stylesheet" type="text/css" href="homepage.css" media="all">
  <script type="text/javascript" src="common.js"></script><!-- Load common JavaScript -->
  <script type="text/javascript" src="/cgi-bin/pubinfo.cgi"></script><!-- load the public info -->
  <script type="text/javascript" src="plugindef.js"></script><!-- Load the plugin define -->
  <script type="text/javascript">
<!--
function SnapshotWin()
{
 MM_openBrWindow('/snapshot.html','JPEGsnapshot','width=' + (Width + ss_width_offset) + ',height=' + (Height + ss_height_offset));
}
cc=20;
tt=-190;
function flyicon()
{
 if (cc > 0)
 {
  tt+=cc;
  document.getElementById("config_icon").style.left=tt+"px";
  cc--;
  setTimeout("flyicon()",20);
 }
}
function onloadEvent()
{
 setTitle(HostName);
 if (ConfigPriv == 1)
 {
  document.getElementById("config_icon").style.display = "block";
  flyicon();
 }

}
//-->
  </script>
</head>
<body onload="onloadEvent()">
<!-- logo -->
<div id="logo_icon"><a href="http://www.security-center.org/" target="_blank"><img alt="logo" src="pic/logo.gif"></a></div>
<!-- snapshot -->
<div id="snapshot_icon">
<div class="right_text"><a href="javascript:SnapshotWin()">Momentaufnahme</a></div>
<a href="javascript:SnapshotWin()">
<img class="left_img" alt="snapshot" src="pic/snapshot2.gif">
</a>
</div>
<!-- configuration -->
<div id="config_icon" style="display: none">
<div class="left_text"><a href="setup/config.html" target="_top">Konfiguration</a></div>
<a href="setup/config.html" target="_top">
<img class="right_img" alt="configuration" src="pic/config2.gif">
</a>
</div>
<!-- client setting -->
<div id="client_icon">
<div class="right_text"><a href="client.html" target="_top">Kunden - Einstellung</a></div>
<a href="client.html" target="_top">
<img class="left_img" alt="client setting" src="pic/client2.gif">
</a>
</div>
<!-- hostname -->
<div id="page_title">
<script type="text/javascript">
<!--
document.write(HostName);
//-->
</script>
</div>
<!-- display image here -->
<div id="display_image">
<script type="text/javascript">
<!--
// The ActiveX plug-in
document.write("<object id="" + PLUGIN_ID + "" width=" + (Width + X_OFFSET_CTRL) + " height=" + (Height + Y_OFFSET_CTRL));
document.write(" standby="Loading plug-in..." classid=CLSID:" + CLASS_ID);
document.write(" codebase="/" + PLUGIN_NAME + "#version=" + PLUGIN_VER + "">");
document.write("<param name="Url" VALUE="rtsp://" + location.hostname + "/" + RTSPAccessName +"">");
document.write("<param name="Stretch" VALUE="" + STRETCH + "">");
document.write("<param name="VSize" VALUE="CMS">");
document.write("<param name="Language" VALUE="" + PLUGIN_LANG + "">");
document.write("<param name="ClientOptions" VALUE="639">");
document.write("Dies ist ein ActiveX Plug-In. Wenn Sie diesen Text sehen, so sind ActiveX Plug-Ins deaktiviert, oder Ihr Browser unterst\u00fctzt diese nicht.");
document.write("</object>");
//-->
</script></div>
</body>
</html>

Schonmal super vielen Dank für eure Hilfe!

Gruß Marc