Is it possible to save images directly from the webcam of my system to a web server in Java? Maybe it can directly passed to an URL address and can be GET at the server or anything else.
|
|
||||
|
|
You can use the Java Media Framework (JMF) to capture images from a webcam using Java. The JMF enables you to capture the current shot into an You really shouldn't use Assuming that you're using a Good luck. |
|||
|
|
|
depends on your webcam /Webcam software . Lots of webcams come with software which stores the images in a directory. Configure the software and your web server in such a way that the images or streams are accessible from your webserver. That's all. This way you can easily check on your web page for new webcam images and display them. If your webserver is remote, do the same trick by installing a small server or java tool which checks for new images in the configured directory. If it finds some, write some code which posts those images as upload to your remote web server. Hope that helps. |
|||
|
|