[Webkit-unassigned] [Bug 186889] WebRTC MediaStreamTrack Enable / Disable causes video delay / lag
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri Jun 22 13:18:10 PDT 2018
https://bugs.webkit.org/show_bug.cgi?id=186889
--- Comment #10 from Neil Kinnish <hello at neilkinnish.com> ---
Okay, I've done a lot more testing.
1. I restarted the IOS device which I was seeing the stream fails on and also got hold of another 2 IOS devices. I don't seem to be able to re-create that particular issue now, so could have just been a temp issue on the device!?
2. The original issue – video delay after muting (disabling) audio track however is still present. The video being sent is noticeably delayed on the other end after muting.
I can't send you my project, but to test this case I just downloaded: https://github.com/shanet/WebRTC-Example
I added an audio toggle...
```
function toggleAudio() {
if (localStream.getAudioTracks()[0].enabled) {
localStream.getAudioTracks()[0].enabled = false;
} else {
localStream.getAudioTracks()[0].enabled = true;
}
}
```
It causes the same issue, the more you mute the more delay.
Hope this helps, sorry for so many pings.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20180622/ced7a9a6/attachment-0001.html>
More information about the webkit-unassigned
mailing list