Help to stream ip cam on boxee web-browser.

Asked By 20 points N/A Posted on -
qa-featured

I use a FoscamIP camera, type 8904W.

Is there a solution to stream IPcam on Boxeelive from my network camera by any settings anywhere?

The standard Boxeeweb-browser does not show the login page of the camera to me.

Please help.

SHARE
Answered By 0 points N/A #166613

Help to stream ip cam on boxee web-browser.

qa-featured

Hello M Guy,

You can try this method:

Type this address in your browser

"http://X.Y.Z.W/snapshot.cgi?user=xxxxx&pwd=yyyyyyy"

Where

– X.Y.Z.W is the IP address of the cam

– xxxxxxx   is your user name

– yyyyyyy is your password

You will get a fixed picture. To have the live stream you should add this javascript code

<html>

<body>

<script language="JavaScript" type="text/javascript">

function reload() {setTimeout('reloadImg("refresh")',350)};

function reloadImg(id)

{

var obj = document.getElementById(id);

var rand = Math.random();

obj.src = "http://192.168.x.xx:xxxx/snapshot.cgi?user=xxxx&pwd=xxxxx&t="+rand;

}

</script>

<img src="http://X.Y.Z.W/snapshot.cgi?user=xxxxx&pwd=yyyyyyy&t=" name="refresh" id="refresh" onload='reload()'>

</body>

</html>



save this text to a html file and open it with any browser.

Related Questions