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?
|
|
You can also try Xuggle: http://wiki.xuggle.com/Encoding%5FVideo%5Ffrom%5Fa%5Fsequence%5Fof%5FImages |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
