From 7ab3d827ba044966194b7163c4215f1ca1cbbc70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C2=AF=5C=5F=28=E3=83=84=29=5F/=C2=AF?= Date: Mon, 22 Mar 2021 16:57:10 +0100 Subject: [PATCH] Re-enable noise supression It's massively useful. In the long run we should make it configurable and save it in local storage. --- front/src/WebRtc/MediaManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/WebRtc/MediaManager.ts b/front/src/WebRtc/MediaManager.ts index 9bcf1233..9ba3c15c 100644 --- a/front/src/WebRtc/MediaManager.ts +++ b/front/src/WebRtc/MediaManager.ts @@ -23,7 +23,7 @@ const audioConstraint: MediaTrackConstraints = { // TODO: Make these values configurable in the game settings menu and store them in local storage autoGainControl: false, echoCancellation: true, - noiseSuppression: false + noiseSuppression: true }; export type UpdatedLocalStreamCallback = (media: MediaStream|null) => void;