Skip to main content
Known Participant
February 26, 2010
Question

ECHO PROBLEM

  • February 26, 2010
  • 1 reply
  • 1845 views

i m using these setting

             microphone = Microphone.getMicrophone();
                microphone.setLoopBack(true);
                microphone.setUseEchoSuppression(true);
                microphone.rate = 11;
                microphone.gain = 50;

i am facing the problem of echo .i am speaking than i can also hera my voice . how to reduce that problem that user can not hear own voice .

And how to reduce echo.

    This topic has been closed for replies.

    1 reply

    February 26, 2010

    This line:

    microphone.setLoopBack(true);

    Tells the flashplayer to route the mic audio to the speakers, so you'll want to get rid of that.

    Next, you'll want to use headphones (if you aren't already). If you're using speakers, it's likely that you'll get feedback and echo.

    calmchessplayer
    Inspiring
    February 26, 2010

    I use two streams 1 for audio and 1 for video then i shut off the audio on the vidoe I attach the mic to the audio stream and never play the audio stream on the broadcaster this gets rid of the nasty echo and i find i have more control over how i interact with the seperate streams.

    February 26, 2010

    @Calmchessplayer - if I'm understanding you correctly, I'd advise against that. Putting the audio and video on separate streams is asking for loss of sync.