Re: [mediacapture-record] ignoreMutedMedia on a combination of muted and unmuted tracks?

Also, what's the behavior if I do this?
```js
let recorder = new MediaRecorder(stream);
setInterval(() => recorder.ignoreMutedMedia = 
!recorder.ignoreMutedMedia, 2000);
setInterval(() => stream.getTracks().forEach(t => t.enabled = 
!t.enabled), 3000);
```

-- 
GitHub Notification of comment by jan-ivar
Please view or discuss this issue at 
https://github.com/w3c/mediacapture-record/issues/99#issuecomment-267068037
 using your GitHub account

Received on Wednesday, 14 December 2016 15:44:41 UTC