Reputation: 41
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
Reputation: 24626
Here do try these links
And do try to run these files, hope these can help
For this project to work, you have to download first Java Media Framework from here
Upvotes: 2
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