-
Notifications
You must be signed in to change notification settings - Fork 217
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Echo/Noise in Quickblox audio call #410
Comments
can you send your snapshot of the code (the function of getUserMedia) then only we can get to know what you are missed? thank you |
var mediaParams = { you need to mention muted as a true Noise webrtc defaulty suppress the noise |
Tahnk you for your reply. private getMediaParams(isAudio: boolean, localVideo: string): Object{
|
i think you are facing this issues only on audio call? |
yes. Video call is working perfectly. no issues. audio call only having the echo & noise issue |
mediaParams = { you also need to mentioned elemId for audio call as well in order to minimized the echoing we need to attach the stream to one element then only we can muthed the stream Or else you can do another way |
ok . Thank You. I will try this. |
Hai I was tried this but it also not working. any other solutions. You have any code for this. |
Hi @kjp90 , const mediaParams = {
audio: {
echoCancellation: true,
noiseSuppression: true
},
video: false,
options: { muted: true }
} |
I have develop the videochat in Angular. I can refer Javascript SDK Sample. The sample is working fine. But when i developing the example in angular I get a lot of noise and echo in audio call. Video Call Working perfectly there is no noise or echo. Why is that so in audio call?
The text was updated successfully, but these errors were encountered: