Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

axis-netcam

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

axis-netcam

  • 0.2.1
  • Rubygems
  • Socket score

Version published
Maintainers
2
Created
Source

= AxisNetcam

AxisNetcam provides a Ruby interface for interacting with network cameras from Axis Communications.

Copyright 2007 Urbacon Ltd.

=== Contact Info

For info and downloads please see:

http://rubyforge.org/projects/axis-netcam/

For source code:

http://github.com/DefV/axis-netcam

You can contact the author at:

matt at roughest dot net

=== Installation

As a RubyGem[http://rubygems.org/read/chapter/3]):

gem install axis-netcam

As a plugin in a Rails application (this will install as an svn external, so your installation will be linked to the newest, bleeding-edge version of AxisNetcam):

cd <your Rails application's root directory> ruby script/plugin install -x http://axis-netcam.rubyforge.org/svn/trunk/lib/axis-netcam

=== Usage

Note that only a subset of the full Axis API is currently implemented, but the most useful functionality is in place.

Example usage:

require 'rubygems' # (if installed as a gem) require 'axis-netcam'

c = AxisNetcam::Camera.new(:hostname => '192.168.2.25', :username => 'root', :password => 'pass') c.tilt(90) c.zoom(500) f = File.open('/tmp/test.jpg', 'wb') f.bin f.write(c.snapshot_jpeg) f.close

For more information about using the Camera class, see the AxisNetcam::Camera RDocs.


axis-netcam is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.

axis-netcam is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with this program. If not, see http://www.gnu.org/licenses/.

FAQs

Package last updated on 08 Feb 2010

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc