I'm building a java application which works in a LAN environment, every computer on that LAN have this application installed on it, at some point i need this application to transfer voice simultaneously to all computer over the LAN (voice broadcasting) according to the following mechanism:
Could anyone give me an idea of how to use java in working with voice transmission?
What java library can help me do that?
Please help, thank you
You might want to look at ECF for the server portion. You could set up a publish/subscribe model where only the server can publish but each of your clients has access to subscribe to the server.
At this point I would look at XMPP as the protocol (ECF supports this protocol out of the box). XMPP plus extensions is what Google uses for Google Voice so it is proven and it looks like it will be around for awhile. Take a look at xmpp.org for some Java libraries.
JMF as mentioned by JRL is some pretty old technology but it might be useful for grabbing sound from the microphone and for storing a voice file on the filesystem.