I was developing an web application in Java. In that application I have a requirement to develop video conference feature for allowing client to have video chat with company representative. I have done a little research and found Java Media Framework.... Are there any better solutions for developing web based video conferencing using java J2EE...
-
Why bother implementing from the scratch ? You can provide some skype link and everyone is familiar already with that. – Don Srinath Mar 13 '15 at 05:44
-
it's company project bro ...so i have implement from scratch... – Rajasekhar Reddy Mar 13 '15 at 05:45
-
1@Rajasekhar Reddy, that's your brother? – Ascendant Jan 13 '16 at 23:09
1 Answers
You are on right track.
JMF is the best for video conferencing.
JMF does provide the basic building blocks for a conferencing application to transmit and receive media over RTP. It is possible to build fully- featured standard-based conferencing solutions on JMF if you combine it with conferencing protocols like H.323.
Ref URL : http://www.oracle.com/technetwork/java/javase/faq-jmf-137005.html#jmf2-conferencing
Actually there are mainly 2 file from which you can communicate with java jmf plugin.
AVTransmit2.java works as a data capturer from your own webcam and transmit the data to the peer's IP address.
AVReceive2.java works as a data receiver from your remote peer and play the data by java jmf plugin.
Below is the Video Conferencing project, which might be helpful to you.
http://matrixsust.blogspot.in/2013/07/video-conferencing-project-in-java.html