Equipment/Webcams/IPSecure300r: Difference between revisions
From London Hackspace Wiki
No edit summary |
m (Sci moved page Webcams/IPSecure300r to Equipment/Webcams/IPSecure300r: Namespace cleanup.) |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
=The IP Secure300r webcam= | =The IP Secure300r webcam= | ||
The camera is [http://www. | The camera is [http://www.generalmanual.com/Webcams/Genius-IPCam-Secure300R-IP-Network-Camera.htm one of these]. | ||
The firmware is [http://download.geniusnet.com/2007/webcam/IPCam%20S300R.zip here] | |||
=='''Warning'''== | =='''Warning'''== | ||
Line 18: | Line 12: | ||
* Username: admin | * Username: admin | ||
* Password: hackspace | * Password: hackspace | ||
It also listens on 49152 with some unknown protocol. | |||
===Infrared led control=== | ===Infrared led control=== | ||
Line 38: | Line 34: | ||
* [http://netcam/cgi-bin/getimage?java=1 Java] a stream of width and size followed by JPEG. | * [http://netcam/cgi-bin/getimage?java=1 Java] a stream of width and size followed by JPEG. | ||
* [http://netcam/cgi-bin/getimage?motion=1 M-JPEG] returns a multipart/x-mixed-replace stream. However, the boundary provided is incorrect, which | * [http://netcam/cgi-bin/getimage?motion=1 M-JPEG] returns a multipart/x-mixed-replace stream. However, the boundary provided is incorrect, which <code>motion</code> does not appreciate, so use: | ||
mkfifo campipe; nc -l -p 8011 | mkfifo campipe; nc -l -p 8011<campipe | nc netcam 80|sed -r 's/(boundary=)--sonixboundary/\1sonixboundry/'>campipe | ||
And stream from [http://localhost:8011/cgi-bin/getimage?motion=1 there]. On [[Babbage]], the script | And stream from [http://localhost:8011/cgi-bin/getimage?motion=1 there]. On [[Babbage]], the script <code>netcamfix</code> is started automatically from <code>xinetd</code> and does the same (this feeds into motion). |
Latest revision as of 14:14, 29 May 2013
The IP Secure300r webcam
The camera is one of these.
The firmware is here
Warning
The java app on the main admin page of the camera tends to lockup firefox
Access
- IP: 172.31.24.169
- Host: netcam
- Username: admin
- Password: hackspace
It also listens on 49152 with some unknown protocol.
Infrared led control
To toggle the ir leds:
wget netcam/goform/WebCam_MotoForm?MotoBut=Light --http-user=admin --http-password=hackspace
you will get a page returned as either:
webcam_logoIROff.htm (Meaning the leds are on)
or
webcam_logoIROn.htm (Meaning the leds are off)
How to get an image
- Java a stream of width and size followed by JPEG.
- M-JPEG returns a multipart/x-mixed-replace stream. However, the boundary provided is incorrect, which
motion
does not appreciate, so use:
mkfifo campipe; nc -l -p 8011<campipe | nc netcam 80|sed -r 's/(boundary=)--sonixboundary/\1sonixboundry/'>campipe
And stream from there. On Babbage, the script netcamfix
is started automatically from xinetd
and does the same (this feeds into motion).