I am working on an interactive visualization software using Java. Each frame, I display a new BufferedImage and save the previous BufferedImage in an array. I want to add a recording functionality. So, I would like to convert my array of BufferedImages into any JMF-supported video format (at any configurable resolution) using the JMF library. How can I accomplish this?
I have tried looking for tutorials, but I couldn't find any that explained how I could use JMF to create a video from images...