I crate audio tag, and use 'autoplay' to start audio. On Descktop work well, but not work on mobile device: ipad, winphon, android 4+...
<audio id="myAudio" onerror="toConvert()" class="full-width" src="{{ direct_link }}" controls autoplay onpause="$('#play_ico').show()" onplaying="$('#play_ico').hide()"></audio>
I tried using jquery, js, canplay, canplaythrougt and many other methods from web, but they dont work in mobile and working well on descktop....
How can I start playing audio on mobile device?
I use: goRatchet, Bootstrap and Django.