ios - Can barely hear HTML5 audio through earphones -
i'm using html5 audio implementation in phonegap code. implementation looks below:
myaudio = new audio(path.mp3); myaudio.play();
the problem media audible when i'm listening through devices speakers. once plug-in earphones, can barely hear sound coming out.
i tried using volume attribute raise volume max.
myaudio.volume = 1.0;
but didn't make difference.
then checked current volume adding line:
alert(myaudio.volume);
that returned 1
, meaning it's @ max. ideas?
Comments
Post a Comment