Well I bought that camera. It's also called "Grand Wireless IP Camera". I assume it's Grandtec.
It works OK, I like the fact that the LEDs come on when its too dark.
The manual was useless - just showing you the wonderful windows gadgets they included on the CD, which I never installed. However, digging thru the HTML page that the camera generates allowed me to see that it has a "/still.jpg" path that shows the current picture. So I used that with ZM.
It also appears to support "/video.cgi" as path, for streaming video, but I never got that to work with ZM. Any ideas?
As it is, I can get 1 FPS out of the camera, anything more, and the camera's IP address turns red on the status screen, and I get a "broken" symbol instead of the snapshot when I click on the camera's name.
I'd be happy to test things out, just let me know what.
-turgut
PS: I loaded up the page that suppose to show a live video, I am enclosing its javascript code below. Interesting to see commented code in firmware
//if(va_width==320)
// window.resizeTo(900,620)
//else if(va_width==640)
// window.resizeTo(900,730)
if ((navigator.appName == "Microsoft Internet Explorer")&&(navigator.platform != "MacPPC")&&(navigator.platform != "Mac68k"))
{
document.write("<OBJECT ID=CamImage WIDTH=")
document.write(va_width)
document.write(" HEIGHT=")
document.write(va_height)
document.write(" CLASSID=CLSID:AA0FB75C-C50E-47B6-B7E0-3B9C3FAA8AC4 ")
document.write(" CODEBASE=\"/Comm/IPCamControl.cab#Version=1,0,0,0 \">")
document.write("<PARAM NAME=\"URL\" VALUE=\"/video.cgi\">")
document.write("<PARAM NAME=\"User\" VALUE=\"\">")
document.write("<PARAM NAME=\"Password\" VALUE=\"\">")
document.write("</OBJECT>")
}
else
{
document.write('<IMG SRC=/video.cgi WIDTH='+va_width+' HEIGHT='+va_height+'>')
}