Windows XP + playing HTML5 audio problems -
i published new application, full of audio tags, , it´s working fine in browsers. unfortunately, there customers windows xp , chrome version 49 (because there no chrome support winxp anymore). when hearing audio in application, there very, poor sound , breaks often. tried adding 3 formats (mp3, ogg, wav), still same. tried other browsers on winxp (firefox, chrome, opera, iron...), again same. weird - if open audio file right click in new tab, plays perfectly!
can code cause? how write audio tags:
<div id="playerarea" class="row playerarea animated fadein"> <audio id="dolphinaudio" controls="controls" preload="auto" onvolumechange="volumechangedevent()"> <source src="filename.mp3" type="audio/mpeg" /> <source src="filename.mp3" type="audio/mp3" /> <source src="filename.ogg" type="audio/ogg" /> <source src="filename.wav" type="audio/wav" /> browser not support audio element. </audio> </div>
anyone had experience this?
Comments
Post a Comment