Is it possible to put the streaming video from my IP camera on to my own webpage?

Use the below example code for a webpage. If the camera isbehind a NAT device such as a router, the IP must be edited toreflect the public address of the router (IE 24.45.76.223). In thisexample the camera´s IP is 192.168.1.135.

<!--StartFragment--><scriptlanguage="JavaScript">
      <!--
      if ((navigator.appName == "MicrosoftInternet Explorer")&&(navigator.platform !="MacPPC"))
      {
       document.write("<OBJECT ID=\"VACtrl\" WIDTH=330HEIGHT=270");
        document.write("CLASSID=CLSID:A93B47FD-9BF6-4DA8-97FC-9270B9D64A6C");
        document.write("CODEBASE=\"http://24.45.76.223:202/plugin/h263ctrl.cab#version=1,7,0,1\">");
       document.write("<PARAM NAME=\"Url\"VALUE=\"http://username:[email protected]:202/cgi-bin/video.vam\">");
       document.write("<PARAM NAME=\"VSize\" VALUE=\"CMS\">");
       document.write("<PARAM NAME=\"RemoteIP\"VALUE=\"http://24.45.76.223:202-899372864\">");
       document.write("<PARAM NAME=\"RemotePort\"VALUE=\"5004\">");
       document.write("<PARAM NAME=\"DisplayTimeFormat\"VALUE=\"1\">");
       document.write("<PARAM NAME=\"DigitalZoomEdit\"VALUE=\"false\">");
       document.write("<PARAM NAME=\"Language\"VALUE=\"EN\">");
       document.write("</OBJECT>");
      }
      //-->
      </script>

the username and password you see in red should represent yourcameras login details.

Rank: 1.5