I am developing application to monitor 20 video streams at a time. I will have JFrame, and 20 boxes (e.g JPanel) inside JFrame to display 20 streams. I am able to load stream and decode using xuggler, but now how can I display this over Swing JPanel?
I am able to play sound on SourceDataLine, my problem is only, how to display 20 * 30 = 600 video frames in second on Swing component?
Also xuggler outputs YUV420P pixel format decoded frames, is there overhead in converting this to RGB, create BufferedImage and display on Swing Component?
Please guide me on this. I want to display 20 video streams at a time in swing components.