Python Webcam
After looking at a lot of webcam software, most of which basically seems to be a shell around a Windows DLL which does the hard work, I have decided to take a look at
Video Capture "A Win32 Python Extension for Accessing Video Devices (e.g. a USB WebCam, a TV-Card, ...)". The example code looks really easy:
from VideoCapture import Device
cam = Device()
cam.saveSnapshot('image.jpg')
Posted by stuartcw at May 4, 2004 01:46 PM