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.

link|improve this question
Well, you will need to write some Java code that receives MJPEG frames and writes them to a file. Perhaps you should be a little more specific about what problem you encountered while trying it. – Bringer128 Aug 5 '11 at 7:56
1  
hey, thank you, i dont know how i could recieve the frames and save them to the disk. Can you give me a approach to do this? – Favi Aug 5 '11 at 8:23
Favi, do you know how to receive data from a Stream? I would start there. – Bringer128 Aug 5 '11 at 11:04
feedback

3 Answers

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!

link|improve this answer
feedback

Here is a code that could help you:

http://www.walking-productions.com/notslop/2010/04/20/motion-jpeg-in-flash-and-java/

link|improve this answer
feedback

You can just parse out the Jpeg bytes and save them into files.

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.