A podcast website uses an HTML audio element like , but users report that playback does not begin automatically on their phones. Which explanation is the most technically accurate? Is it simply that browsers block autoplaying audio with sound, or is there a more specific reason involving modern mobile browser policies?
1 Answer
Option 2 is the more technically precise choice. Modern browsers, particularly on mobile, intentionally prevent media with audible sound from autoplaying unless the user has interacted with the page. This helps avoid unexpected audio, intrusive experiences, and unnecessary data usage. Muted media may autoplay, but an audible podcast generally needs a user-activated play button.

So option 1 is still broadly correct, but option 2 gives the reason and the mobile-browser context in more detail.