Who hasn’t a IP Camera yet? Wireless IP Cameras starting from 35 dollar (1.3mp 960p) or from 50 dollars (2mp 1080p) on Ebay.
I’d like to have a simple IP Camera snapshot plugin. A plugin that uses the widely ready for use snapshot path on IP Camera’s.
For example a Foscam snapshot.cgi mjpeg path:
- http://84.80.116.208/snapshot.cgi?user=user&pwd=12345&snapshot.mjpg (snapshot path)
- http://84.80.116.208/decoder_control.cgi?command=37&user=user&pwd=12345 (37,31,35,33 command used for movements)
Not my ip camera user&pwd is a guest account used at jordaan dot nl
Foscam CGI SDK pdf here. CGI is based on http protocol.
Other brands with snapshot paths found here and here.
Found a Foscam viewer powered by node.js in coffee https://github.com/tizzo/foscam-viewer
IP Camera snapshot device prototype:
{
"id": "CameraSnapshot",
"name": "CameraSnapshot",
"class": "CameraSnapshot",
"url": "http://84.80.116.208/snapshot.cgi?user=user&pwd=12345&snapshot.mjpg",
"resolution": "320*200",
"interval": 60000,
"buttons": [
{
"id": "left",
"text": "Left",
"command": "http://84.80.116.208/decoder_control.cgi?command=31&user=user&pwd=12345"
},
{
"id": "right",
"text": "Right",
"command": "http://84.80.116.208/decoder_control.cgi?command=35&user=user&pwd=12345"
},
{
"id": "Down",
"text": "Down",
"command": "http://84.80.116.208/decoder_control.cgi?command=37&user=user&pwd=12345"
},
{
"id": "up",
"text": "Up",
"command": "http://84.80.116.208/decoder_control.cgi?command=33&user=user&pwd=12345"
}
]
},
IP Camera snapshot GUI prototype: