I could get YUV images from Camera for 20 frames per second, i want to play it as live streaming on JSP page.
I have done some research about JMF/FFMpeg, maybe they could work with J2SE(Swing),but seems hard to work on web application(Tomcat+JSP pages).
Any suggestion will be appreciated!
Based on our discussion in the comments, here's a solution that you might find feasible:
Be advised of the bandwidth implications, however. For example, a 320x240 video frame has 76800 pixels. 20 frames per second works out to 1536000 pixels per second. Assuming 32-bit RGB, that's 6144000 bytes, or about 6 MB of raw video data per second, per client.