user1345415
user1345415

Reputation: 41

Embedding Video Into A Java Application?

I want to put a video on my Java Swing application.

For example, I can use...

g.drawString("Hello!",100,100);

To draw a string. But how do I put a video there?

Upvotes: 1

Views: 1174

Answers (2)

nIcE cOw
nIcE cOw

Reputation: 24626

Here do try these links

And do try to run these files, hope these can help

MEDIA

For this project to work, you have to download first Java Media Framework from here

Upvotes: 2

Alex Calugarescu
Alex Calugarescu

Reputation: 848

There is no "easy way" for doing this if you want your player to be able to playback all sorts of videos. Try using GStreamer for Java from Google-Code...

Upvotes: 2

Related Questions