[Webkit-unassigned] [Bug 239635] MediaRecorder causes Network process crashed in about 10 minutes

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon May 9 22:39:36 PDT 2022


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

yuki uchida <rantarn0326 at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|LATER                       |---

--- Comment #10 from yuki uchida <rantarn0326 at gmail.com> ---
(In reply to youenn fablet from comment #9)
> @ uchidaさん、どういうわけか予想される振る舞いを考えて、このレーダーを閉じます。
> 回避策の1つを使用してみて、それで問題が解決するかどうかを確認できますか?
> そうでない場合は、このバグエントリを再度開いてください。


Thank you for the solution.

However, I made some modifications to the verification application and investigated again, and found that the `network process crashed` was occurring every 10 minutes or so, even before the blob binding was done.

We started recording by specifying timeslice as recorder.start(1000), and the data that became ondataavailable was not stored anywhere as is

````
this.mediaRecorder.ondataavailable = (event) => {
        if (event.data && event.data.size > 0) {
          console.log(event);
          // this.blobs.push(event.data);
          // this.blob = event.data;
        }
      }
```

But in fact I get `network process crashed` - is garbage collection not working?

-- 
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/20220510/f4922700/attachment.htm>


More information about the webkit-unassigned mailing list