Since last Google Chrome update 58.0.3029.81 my code doesn't wok anymore:
<audio id="player" src="http://serverip/stream.m3u" type="audio/mpeg"></audio>
<div>
<button onclick="document.getElementById('player').play()">Play</button>
<button onclick="document.getElementById('player').pause()">Pause</button>
<button onclick="document.getElementById('player').volume += 0.1">Vol+ </button>
<button onclick="document.getElementById('player').volume -= 0.1">Vol- </button>
</div>
I can confirm that the above code works perfectly on another laptop with an older Google Chrome version 50.0.2661.95. I also checked on a MacBook with Safari and it works fine as well.
I would really appreciate if someone could shed some light as I am really struggling to find a working solution.
Many thanks for your kind help!