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]);
```

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

Received on Thursday, 7 May 2020 13:54:43 UTC