Skip to content Skip to sidebar Skip to footer

How To Disable Autoplay Of Audio (stream) Html5 Element

I can't make this work, and I tried multiple methods, so far the suggestions maybe worked for static mp3 and other files, but for this stream, with controlls hidden I couldn't stop

Solution 1:

The solution was to use preload atribute like this:

<audio id="player" autostart="0" autostart="false" preload ="none" name="media">

Post a Comment for "How To Disable Autoplay Of Audio (stream) Html5 Element"