From f85b3f00d48e08261f8f5acbfb7206e9eae742ea Mon Sep 17 00:00:00 2001 From: Chigozirim Igweamaka Date: Tue, 9 Jul 2024 23:19:59 +0100 Subject: [PATCH] disable audio default processing to get better sound quality --- client/src/App.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/App.js b/client/src/App.js index 5c3a89f..a054590 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -94,8 +94,8 @@ function App() { audio: { autoGainControl: false, channelCount: 1, - echoCancellation: true, - noiseSuppression: true, + echoCancellation: false, + noiseSuppression: false, sampleSize: 16, }, };