This content has been marked as final.
Show 2 replies
-
1. Re: Acoustic echo cancellation
kglad Feb 1, 2012 7:11 AM (in response to oeann)there is one microphone method and one property you can use: setUserEchoSuppression() and useEchoSuppression, resp.
-
2. Re: Acoustic echo cancellation
oeann Feb 1, 2012 7:18 AM (in response to kglad)thanks for your reply
I use function like this:
mic = Microphone.getEnhancedMicrophone();
var options:MicrophoneEnhancedOptions = new MicrophoneEnhancedOptions();
options.echoPath = 128;
options.mode = MicrophoneEnhancedMode.FULL_DUPLEX;
options.autoGain = false;
options.nonLinearProcessing = true;
mic.enhancedOptions = options;
mic.rate = 44;
mic.gain = 50;
mic.setSilenceLevel(10);
mic.setUseEchoSuppression(true);
mic.setLoopBack(false);
But this dont work. The speaker sound is captured by the microphone.
Thanks to help me with this and excuse me for my english.. i speak french.


