Live Streaming

How to capture the images out of the camera (for a live streaming view) and onto your website.

Put the following html code to your website

<HTML>
<script language="JavaScript" type="text/JavaScript">
function showCamera(o)
{
// Replace this url with your own ip camera url...
o.URL = "http://192.168.1.101";
// Set your camera window's width here
o.CamWidth = 640;
}
</script>
<OBJECT onreadystatechange="showCamera(this);"
CODEBASE="..\cab\WinWebPush.cab#version=1,0,1,3"
CLASSID="CLSID:7876E4A5-78B7-4020-B08F-C960A1ED54C9"><./OBJECT>
</HTML>