views:

892

answers:

2
+1  Q: 

Java Video Player

I need a java api, that cannot use JMF, to play video interpreted by the SO codecs but i want to retrieve the each frames in java code. Somebody know some?

+1  A: 

Have a look at FMJ. It does not require the Java Media Framework (JMF).

They have an example at the bottom of the page that writes out the first 5 frames of the video to files, so you should be able to get to the individual frames.

Steve K
A: 

FMJ is very much out-of-date and JMF is a lost cause (yes one of those is IMHO). If you want something that works and will do exactly what you have described, try Xuggle. In their media tools examples they offer a simple player example using AWT / Swing. http://xuggle.com/

Mondain