On Sun, Jun 7, 2009 at 10:42 AM, Arunkumar S.<[email protected]> wrote: > Hi > I am going to start new java voice chat. I am searching new framework > for socket programming. > Just now I heard about mina. Is this framework suitable for voice chat > application? Main part of my application is avoiding delay. > So please help me
Give it a try. Remember that Java does not guarantee in any case that you won't have delay, but this is also true for many other components (network, OS, etc...) The best way to avoid delay is probably to buffer the voice for a few hundreds millisecond, so that if you have some lagging at some point, it won't be sensible. In any case, as you don't need a lot of bandwith to transport voice (as less as 4kb/s is enough, even if the quality is terrible), you won't charge the server a lot. -- Regards, Cordialement, Emmanuel Lécharny www.iktek.com
