NEW 233204
Connecting an AudioContext to a video causes the volume control to fail.
https://bugs.webkit.org/show_bug.cgi?id=233204
Summary Connecting an AudioContext to a video causes the volume control to fail.
Leon
Reported 2021-11-16 10:56:41 PST
When you place a video on a webpage and then connect an AudioContext to it, the volume control is not working anymore, as opposed to others browsers in the industry. This breaks ability to change volume easily while applying live audio modifications to a video. Here is a simple example with a gain node: let context = new window.AudioContext(); let gain_node = context.createGain(); let source = context.createMediaElementSource(document.getElementById('video')); source.connect(gain_node); gain_node.connect(context.destination);
Attachments
Radar WebKit Bug Importer
Comment 1 2021-11-23 10:57:18 PST
Note You need to log in before you can comment on or make changes to this bug.