fix(local-recording) don't use tab audio

We have observed that participant audio is distant and garbled, so we
added the tracks individually to the mixer.

In addition, using tab audio prevents us from using preferCurrentTab due
to: https://bugs.chromium.org/p/chromium/issues/detail?id=1317964 so
losing audio effects but having better participant audio quality (in
addition to better UX) is not a bad compromise.
pull/12341/head jitsi-meet_7914
robertpin 3 years ago committed by Saúl Ibarra Corretgé
parent 4857664f15
commit ebcd1d85f2
  1. 8
      react/features/recording/components/Recording/LocalRecordingManager.web.ts

@ -228,12 +228,8 @@ const LocalRecordingManager: ILocalRecordingManager = {
// @ts-ignore
video: { displaySurface: 'browser',
frameRate: 30 },
audio: {
autoGainControl: false,
channelCount: 2,
echoCancellation: false,
noiseSuppression: false
}
audio: false,
preferCurrentTab: true
});
document.title = currentTitle;

Loading…
Cancel
Save