diff --git a/www/app/components/record.js b/www/app/components/record.js index d1a71093..f683f2b7 100644 --- a/www/app/components/record.js +++ b/www/app/components/record.js @@ -97,7 +97,11 @@ export default function Recorder(props) { document.getElementById("play-btn").disabled = false; } else { const stream = await navigator.mediaDevices.getUserMedia({ - audio: { deviceId }, + audio: { + deviceId, + noiseSuppression: false, + echoCancellation: false, + }, }); await record.startRecording(stream); props.setStream(stream);