Hi, I am currently capturing diffrent images using java.... Now i want to show all these images in a sequence so that it should look like a video... How should i do this? I have been suugested that I need to use JMF.But i dnt have any idea about JMF....Can anybody help me?
A:
There is an ability in JMF that will give you a fully optimized preview screen. Take a look at that. I can't tell you what class it is in, but I can confirm the existence of it.
monksy
2009-11-03 06:47:51
+1
A:
You can also try Xuggle: http://wiki.xuggle.com/Encoding%5FVideo%5Ffrom%5Fa%5Fsequence%5Fof%5FImages
Maciek Sawicki
2009-11-03 07:11:43
A:
If you only want to show these images without actually creating the video, then just use a JLabel and a Timer and call JLabel.setIcon() (example here) with some frame rate to get animation effect.
tulskiy
2009-11-03 08:04:45