Link to home
Start Free TrialLog in
Avatar of glemaire2004
glemaire2004Flag for Slovenia

asked on

Java desktop app development : best library/components for graphs and video

We need to develop java desktop application. The screen should show
a) video window with buttons play, stop, movable slider showing total/elapsed video playing time (user hascan load video from local file

b) graph (several plots should be  shown, x-axis is time , y-axis are plots of different signals)
b1) user can do a lot of interactive action by clicking mouse on the graph: left mouse clicks on graph should return position (x-axis,y-axis), user may select by rectangle area to zoom scale(move scale);
b2) our program should be able to draw vertical line on the graph (x-axis is time) that is aligned with video slider (if video slider is a the 10 seconds then vertical line should be drawn at 10s, - when video is playing we shall "move"  this vertical ine along with video)

Please suggest any good java components for video/graph to take for our development
Avatar of mukundha_expert
mukundha_expert

for desktop applications - adobe AIR might be a better choice.
it has all the tools and API for your requirements.its rich and easy to develop

Avatar of glemaire2004

ASKER

Thanks for your advice, deadlines are quite close and we cannot risk with learning new technology. It really seems perfect, maybe we shall consider it in long term but for this project we shall stick to java.
 
ASKER CERTIFIED SOLUTION
Avatar of mukundha_expert
mukundha_expert

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
"Desktop" means that this application is not intended to run in browser. It is application that is supposed to work on rugged laptops (no server technologiy) not connected to the internet.
ok -- u confused with the Applet program?
this is just a sample, you can use a similar code for your desktop app
Partially resolved