Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

4
  • Is there a simpler answer? I'm totally confused, AND, when I paste it into Eclipse, I get 60 errors... >.< Commented Jan 31, 2010 at 21:28
  • On the 1st link you can find at the bottom a download link to JMF API. Put it in project's buildpath in Eclipse. You may want to look for other solutions -eventually built on top of the JMF API, so that it's less verbose. But at least be happy that the JMF API exist, otherwise you need to have precise knowledge how to read images and create videos at low binary level (which obviously needs much more code). Commented Jan 31, 2010 at 21:41
  • Is there a way to do it without JMF? Ugh, I worked so hard on my screen recorder application and I feel like it's all for nothing because the image to video part is way out of my league... =( Commented Jan 31, 2010 at 21:46
  • Certainly you can do it without JMF. Even more, the JMF itself is also just built on top of the existing Java SE API. You only have to learn how the movie file should look like "under the hoods" (at binary level) so that you know what exactly to code in Java. Commented Jan 31, 2010 at 22:45