I'm looking for a cross-platform video capture library, for webcam access. One that wraps V4L/V4L2 on Linux, DirectShow on Windows, and QuickTime on the Mac.

C or C++ is preferred, but I can work in Java or Python if those have better options for libraries.

link|improve this question

75% accept rate
feedback

4 Answers

The OpenCV (Open Source Computer Vision) works under Linux, Windows and Mac OS X.

I use OpenCV under Mac OS X and it works very well with the built-in iSight of my MacBook, and I believe it works equally well under the other platforms.

Of course, OpenCV is not primarily intended as video capture library, but it can be used as such. And if you want to process the frames you grab from your webcam OpenCV will definitely help you with that...

link|improve this answer
feedback

Openframeworks has a video grabbing component which is meant to be cross platform, perhaps you could just use the framework for that piece :)

link|improve this answer
feedback

Two other projects that let you access Webcams from Java:

  1. LTI-Civil
  2. Xuggler
link|improve this answer
feedback

JMF (Java Media Framework) has libraries in Linux/Windows too, and has some support for webcam capture.

Formats

http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/formats.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.