📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wificamera

WifiCamera is a Python module for controlling the network camera CS-W07G-CY.

0.1.1
99

Supply Chain Security

100

Vulnerability

99

Quality

100

Maintenance

100

License

Unpopular package

Quality

This package is not very popular.

Found 1 instance in 1 package

Network access

Supply chain risk

This module accesses the network.

Found 1 instance in 1 package

Maintainers
1

What is this?

WifiCamera is a Python module for controlling the network camera CS-W07G-CY. About the device, see http://www.planex.co.jp/product/camera/cs-w07g-cy/.

Getting started

WifiCamera can be installed with pip or easy_install::

pip install wificamera

Create WifiCamera object, and you can take and save a snapshot::

from wificamera import WifiCamera
camera = WifiCamera(host='192.168.111.200')
data = camera.snapshot()
with open('snapshot.jpg', 'wb') as f:
    f.write(data)

You can get/set some kinds of parameters for the camera::

print(camera.resolution)        # 'VGA'
camera.resolution = 'QQVGA'     # set resolution 'QQVGA'

print(camera.compression)       # 'standard'
camera.compression = 'high'     # set compression 'high'

print(camera.brightness)        # 4
camera.brightness = 7           # set brightness 7

print(camera.contrast)          # 2
camera.contrast = 4             # set contrast 4

To load a snapshot as a PIL object, use StringIO module::

from cStringIO import StringIO 
import Image
data = camera.snapshot()
img = Image.open(StringIO(data))
img.save('snapshot.jpg')

To use streaming, define callback and call 'stream' method::

count = 0

def on_data(data):  # callback
    global count
    with open('streaming.jpg', 'wb') as f:
        f.write(data)
    count += 1

def is_continue():  # stop condition
    global count
    if count < 100:
        return True
    else:
        return False

camera.stream(on_data, is_continue)

License

WifiCamera is licensed under the MIT Licence. See LICENSE for more details.

FAQs

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