Skip to content

Commit

Permalink
Turned off echo cancellation and noise suppresion in playground.
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferStrube committed Oct 1, 2024
1 parent 9ffdf51 commit afbe897
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ public async Task SetMediaStreamAudioSourceNode(AudioContext context)

MediaTrackConstraints mediaTrackConstraints = new()
{
NoiseSuppression = false,
EchoCancellation = false,
AutoGainControl = false,
DeviceId = SelectedAudioSource is null ? null : new ConstrainDomString(SelectedAudioSource)
};
Expand Down

0 comments on commit afbe897

Please sign in to comment.