Re: [mediacapture-main] GetDisplayMedia don't capture the audio from microphone (#694)

> i resolved the issue by tracking the audio alone and the video alone too like that i could capture the audio from the microphone and that what i want. but now if i want to stop the video track in any moment how can i do that?
> 
> PS: I'm using this code:
> 
> ```
> [videoTrack] = displayStream.getVideoTracks();
> 
>                     navigator.mediaDevices.getUserMedia({
>                         audio: true
>                     }).then((audioStream) => {
>                         [audioTrack] = audioStream.getAudioTracks();
>                         stream = new MediaStream([videoTrack, audioTrack]);
> ```

====
Hi, When the two sides communicate, the system’s playing voice will be mixed with the remote speaker’s voice at the same time. 
How to eliminate the remote speaker’s voice in the system’s playing voice in order to Let the remote speaker do not hear his own voice.

-- 
GitHub Notification of comment by AntonioMing
Please view or discuss this issue at https://github.com/w3c/mediacapture-main/issues/694#issuecomment-835852530 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Sunday, 9 May 2021 17:51:12 UTC