Bug 168165 - Playing a HTML video element corrupts AudioContext
Summary: Playing a HTML video element corrupts AudioContext
Status: NEW
Alias: None
Product: WebKit
Classification: Unclassified
Component: Web Audio (show other bugs)
Version: Safari 10
Hardware: iPhone / iPad iOS 10
: P2 Normal
Assignee: Nobody
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2017-02-11 03:53 PST by ae
Modified: 2022-05-03 12:45 PDT (History)
6 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description ae 2017-02-11 03:53:40 PST
Complete, minimal testcase here:

http://instinctive.de/prolevel/webkit-audio-bug-test.html

Steps to reproduce:
1. Visit the URL.
2. Click the button to have "user interaction" in order to play a sound via WebAudio (it will play once per second from then on). Sound is fine.
3. Play the video.
4. As soon as the video is being played, the sound is either distorted, too fast, or stops working altogether (random)

The video has been rendered with 48 kHz audio, my suspicion is that Webkit doesn't recognize the sample rate change or WebAudio isn't capable of resampling.
Comment 1 Jer Noble 2017-02-12 11:08:04 PST
So far I've tried this on three different iPhones running 10.0.2, 10.2.1, and 10.3 Beta, and haven't been able to reproduce the issue. On what OS and device combo are you seeing this behavior?  Also, is this behavior reproducing when playing over the devices' speakers, or with headphones?
Comment 2 ae 2017-02-12 13:23:02 PST
iPhone SE (MLM62DN/A) on iOS 10.2.1. It is often not exactly distortion, it sounds more as if the mixing buffer is too short and part of it is repeated. Listen closely. (happens on internal speaker).
Comment 3 Radar WebKit Bug Importer 2017-02-14 22:46:24 PST
<rdar://problem/30528901>
Comment 4 Mattias Bergström 2017-02-22 01:19:44 PST
I can reproduce the same issue on an iPhone 6 Plus (10.2.1). This is even more noticeable if the audio in the video element has an even lower sample rate (like 22050 Hz). This does not seem to affect 6s and 6s plus. Those devices only support 48 kHz, so this issue might not apply to devices that are locked to 48 kHz.

Relevant to the severity of this issue:
All AudioContexts created after playing a video with low sample rate audio will inherit that same low sample rate. This persists for the lifetime of the browser tab. That means we are capped at playing audio at a much worse sample rate than the device would normally support.