If you open the page in Chrome 71 or newer, it displays a blank rectangle with a Stop/Start button. Clicking the button, even multiple times, doesn't do anything.
The DevTools console displays a warning:
The AudioContext was not allowed to start. It must be resumed (or created) after a user gesture on the page. https://goo.gl/7K7WLu
The URL linked at the end of the message explains the issue. tl;dr is included in one box:
Key Point: If an AudioContext is created prior to the document receiving a user gesture, it will be created in the "suspended" state, and you will need to call resume() after a user gesture is received.
This is a measure preventing websites from playing potentially unwanted audio, as I understand.
Tested on macOS 10.13.6 (17G4015) but the issue should be present on all operating systems.