I want to create voice chat in my little game it looks like this:
for(;
{
recorder.start();
recorder.stop();
send(recorder.getbuffer());
}It doesn't work but I tried something another ...:
recorder.start();
send(recorder.getbuffer());this too didn't work, I have to record and send it at the same time, please help me Bartek.