VideoCapture

A Win32 Python Extension for Accessing the Video Device (e.g. a USB WebCam)

by Markus Gritsch (gritsch@iue.tuwien.ac.at)
I would like to put a list of Python-powered WebCam URLs together, so please send me an email with the URL of the image or of the HTML page if you use VideoCapture.

[ Download ] Version 0.4
binaries, sourcecode, examples, and batteries included - no warranty, no liability, provided 'as is'

 What it is
VideoCapture is a Python extension for Win32 which makes it possible to access video-capture devices (e.g. a USB webcam). It consists of a low-level native module (vidcap.pyd) and a high-level module written in Python (VideoCapture.py) which should be used solely.

Also included are some tools which can be used to periodically upload a WebCam-image to a WebServer via FTP, monitor and save a picture at a given URL to the local disk, and so on. Please refer to the README.txt file in the 'Tools' folder for further details.

 What you need

 How you install it
To make use of VideoCapture just copy the files from the 'Python20' (or 'Python21') folder to the corresponding folders of your 'Python20' (or 'Python21') installation.

 Trying it out
The 'Examples' folder contains simple examples which show how easy it is to obtain images from the video device by using VideoCapture. Taking a snapshot is as easy as

            from VideoCapture import Device

            cam = Device()
            cam.saveSnapshot('image.jpg')
        

 Shortcomings
No shortcomings or limitations known.

 Version history

Have fun!


home