How is it possible to save the pictures from a MJPEG Stream in Java? I want to call a HTTP MJPEG address and save every single frame to a seperate picture file.
feedback
|
|
VLCj should be able to play that stream. If you want to just save screenshots every so often, you should be able to use DirectMediaPlayer (which will give you a BufferedImage) then use ImageIO to save it. Note though that it's not the easiest API in the world to use and requires native code; if you're a beginner (which from the question it seems you might be?) then this isn't the simplest of tasks! | |||
|
feedback
|
|
Here is a code that could help you: http://www.walking-productions.com/notslop/2010/04/20/motion-jpeg-in-flash-and-java/ | |||
|
feedback
|