Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JAVA library for videoconferencing and how to use libjitsi?

In case of a project we need to create a communication in videoconferencing with two PC under Linux. We search a library in JAVA to do this. We found libJitsi base on Jitsi software, witch transmit with XMPP /Jingle. I don't arrive to run their example which consists of these two classes:

http://bluejimp.com/jitsi/libjitsi/javadoc/org/jitsi/examples/AVTransmit2.html

http://bluejimp.com/jitsi/libjitsi/javadoc/org/jitsi/examples/AVReceive2.html

There is few documentation and it seems a little fuzzy. Someone knows this library? then or knows an alternative for the videoconferencing in JAVA?

thank you.

I used Netbeans or Eclipse Java EE. SDK 1.7

like image 724
Thomas Avatar asked Feb 09 '13 08:02

Thomas


1 Answers

I have done a project of video conferencing in java using these 2 files-

AVTransmit2.java
AVReceive2.java

What I understand is that with these 2 file 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.

For more understanding and easy implementation you can have a look at this open source project http://matrixsust.blogspot.com/2013/07/video-conferencing-project-in-java.html

like image 119
Robel Sharma Avatar answered Nov 12 '22 17:11

Robel Sharma