An SO User
An SO User

Reputation: 25018

How to create a AVI movie in Java?

AVI

I have been working on creating a prototype for screen recorder. So far I have created the GUI. Still a lot of things remain.
One of the main thing is to create an AVI movie from a set of BufferedImage.
I tried understanding Monte Media Library but it went way over my head. Is that guy trying to encode things himself? I don't know! :/

  • So, what is the other way to create an AVI from BufferedImages (or any other suitable means that is out of my limited knowledge) ?
  • Upvotes: 1

    Views: 1260

    Answers (1)

    jorgeu
    jorgeu

    Reputation: 689

    I don't think you will find a pure-java library for that. Take a look at gstreamer-java to see if it fits your needs. Make sure you install the right plugins.

    Upvotes: 1

    Related Questions