Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Webcam control in java [closed]

Tags:

java

webcam

jmf

I am thinking of creating a project for controlling my integrated webcam in java.

I have tried searching and found that we need to use JMF for this kinda stuff. But i couldn't find any good tuts or books which explains JMF from scratch.

like image 874
Jonah Avatar asked Nov 07 '10 14:11

Jonah


2 Answers

The following link explains JMF with nice examples:

http://grack.com/downloads/school/enel619.10/report/java_media_framework.html

like image 38
Ravi Parmar Avatar answered Nov 01 '22 10:11

Ravi Parmar


I've actually had more success using Xuggler than FMJ or JMF. Here is a demo program for displaying from a webcam:

https://github.com/artclarke/xuggle-xuggler/blob/master/src/com/xuggle/mediatool/demos/DisplayWebcamVideo.java

like image 117
Brian Clements Avatar answered Nov 01 '22 10:11

Brian Clements