Equipment/Webcams/IPSecure300r: Difference between revisions
From London Hackspace Wiki
m (Reverted edits by 203.122.32.204 (Talk) to last revision by Ms7821) |
No edit summary |
||
Line 34: | Line 34: | ||
mkfifo campipe; nc -l -p 8011<campipe | nc netcam 80|sed -r 's/(boundary=)--sonixboundary/\1sonixboundry/'>campipe | 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]. | And stream from [http://localhost:8011/cgi-bin/getimage?motion=1 there]. [http://www.goarticles.com/cgi-bin/showa.cgi?C=3513823 Stretch Marks] On [[Babbage]], the script <code>netcamfix</code> is started automatically from <code>xinetd</code> and does the same (this feeds into motion). |
Revision as of 09:53, 4 November 2010
The IP Secure300r webcam
The camera is one of these.
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
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. Stretch Marks On Babbage, the script netcamfix
is started automatically from xinetd
and does the same (this feeds into motion).