Reputation: 81
I have seen different modules like OpenCV and Videocapture for taking fast shots from the computer webcam, but these are only for Python 2. I thought I would make one work with Pygame, but I got many errors. I found different pages including pygame's website that said it only works with Linux.
Are there any modules for Python 3.4 for Windows that can quickly take shots from the webcam?
Upvotes: 0
Views: 762
Reputation: 10955
OpenCV can apparently be installed on Windows with Python 3, according to this answer here.
After OpenCV, my 2nd recommendation is to use GStreamer, and this is apparently possible on your specific platform according to this answer.
Upvotes: 0