Why Can't Chrome Reliably Load 3 Simple Audio Files?

228 Views Asked by At

The Problem: Audio files frequently fail to load. As in they do not even show up under the "Network" tab in Chrome Dev Tools.

Test Case:

index.html

<!DOCTYPE html>
<html>
<head>
    <script type="text/javascript" src="main.js"></script>
</head>
<body>
</body>
</html>

main.js

['audio1.ogg', 'audio2.ogg', 'audio3.ogg'].forEach((path) => {
    new Audio(path);
});

Audio Files:

Steps To Reproduce:

  1. Open new tab in Chrome browser
  2. Open "Dev Tools"
  3. Select "Network" tab
  4. Open test case "index.html" in current tab
  5. See "Explanation" and then refresh as needed

Explanation:

  • The first time you load the test case, you will notice all 3 audio files show up in the "Network" tab. They will all start and finish loading successfully.
  • However upon refreshing, likely none of the audio files will show up or be loaded again.
  • Strangely, by waiting a good minute or two, the issue temporarily vanishes, and the next refresh will load all audio files correctly again.
  • But after that, loads will fail as before.
1

There are 1 best solutions below

3
On BEST ANSWER

I can replicate them not showing up in the Network tab (even with the Disable Cache flag set), but the files do load and play correctly — most of the time.

Yes, I think I just mistook this behavior for a problem, because I'm seeing an HTML5 video game frequently get stuck at the "preloading" phase, and it seems these audio files are to blame, because removing them fixes the issue.

I discovered that if I do what's in your test case, just creating the Audio object but not adding it to the DOM, usually I got canplay events from them, but not always — about one in ten times one, two, or even all three of them wouldn't fire canplay. But if I appended them to the DOM, I always got the canplay event.

So if you're not adding them to the DOM (just document.body.appendChild(new Audio(path)); is enough), that could be the cause of your preloading-never-ending issue.