1

I am using Adobe Citrus and Air. The goal is to make a voice chat application with low latency. I take the sound samples that I get from the Microphone SAMPLE_DATA_EVENT encode them in using Native Process and speexenc.exe.

The question with method should I use for the sending of the samples. I tried object repication and the latency is to big.

4

1 回答 1

0

在您的传出流连接后,恕我直言,最好的选择是:

outNetStream.attachCamera(Camera.getCamera());
outNetStream.attachAudio(Microphone.getMicrophone());
outNetStream.publish('media');
于 2010-11-03T13:40:12.533 回答