[Webkit-unassigned] [Bug 221192] "A MediaStreamTrack ended due to a capture failure" occurs in 30 seconds after peer connection establishes

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Nov 15 16:51:44 PST 2022


https://bugs.webkit.org/show_bug.cgi?id=221192

Brian Liu <ralphbliu at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ralphbliu at gmail.com

--- Comment #10 from Brian Liu <ralphbliu at gmail.com> ---
Ya, we are seeing the same issue on iPhone 14/iOS 16.0 and 16.0.1, simply create a video & audio streams and attach to MediaRecorder, record a video then destroy the stream tracks, repeating create streams and destroy tracks few times trigger the error

function stopStream(stream) {
  if (stream) {
    stream.getTracks().forEach((track) => {
      track.stop();
      stream.removeTrack(track);
    });
  }
}

-- 
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/20221116/265b1a74/attachment.htm>


More information about the webkit-unassigned mailing list