Hi there,

I'm trying to work out how to get my IP cam picture diplayed on the LCD.

The following is the code I use with my IP cam to display all my CCTV cameras on my G19 LCD screen thanks to LCDhost. I was wondering if I could make it work with LCD4Linux:



HTML Code:
<html>
<head>
<style type="text/css">
<!--
body{
margin: 0; 
padding: 0;
}
--></style>
</head>
<body>
 <tr>
    <td align="center" valign="middle" border="0"><span style="text-align:center;"><img width="320" height="240" src="http://88.77.66.55:4444/snapshot.cgi?user=username&pwd=password&t=" onload='setTimeout(function() {src = src.substring(0, (src.lastIndexOf("t=")+2))+(new Date()).getTime()}, 1000)' onerror='setTimeout(function() {src = src.substring(0, (src.lastIndexOf("t=")+2))+(new Date()).getTime()}, 5000)' alt=''" /></span></td>
  </tr>
</body>
</html>