0.0.5 • Published 9 years ago

ip-cam-control v0.0.5

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

ip-cam-control

Perform minimal remote adminstration of supported IP cameras. This list includes:

  • WVC80N

example

var camSettings = {
  led: true,
  motionDetection: true,
  allowMobileStreaming: true
}

camControl.editCamSettings('192.168.0.99', '80', 'admin', 'mypassword', camSettings, function(err) {
    if (err) throw err;
});

installation

npm install ip-cam-control

settings

led (boolean)

LED indicator

motionDetection (boolean)

Option 'Trigger Motion Detection' on the Motion Detection admin page.

allowMobileStreaming (boolean)

Option 'Enable Mobile Streaming' on the Options admin page.

methods

editCamSettings(hostname, port, user, pass, settings, callback)

First param of the callback will either contain an error or null.

getCamSettings(hostname, port, user, pass, callback)

callback

function (err, result)

result = {
	led: boolean
 	motionDetection: bool
 	allowMobileStreaming: bool
}

license

MIT

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago