[Webkit-unassigned] [Bug 262759] When recording audio, volume of recording diminishes after several seconds

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Oct 9 18:57:37 PDT 2023


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

--- Comment #3 from bryce.a.aebi at gmail.com ---
Yes, it looks like this was an artifact of noise reduction.

When I change the code to this the issue is resolved:

const stream = await navigator.mediaDevices.getUserMedia({
    audio: {
        autoGainControl: false,
        echoCancellation: false,
        noiseSuppression: false,
    }
});

Thanks for taking a look

-- 
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/20231010/55ea8d3c/attachment.htm>


More information about the webkit-unassigned mailing list