Boost for mp3 audio with javascript

1

I'm trying to play this sound link 5 times higher, but I can not:

document.getElementById("myaudio").volume = 5;
setTimeout(function(){document.getElementById("myaudio").play();},1);
setTimeout(function(){document.getElementById("myaudio").pause();document.getElementById("myaudio").currentTime = 0;},2000);
<audio id="myaudio">
<source src="https://www.elongsound.com/images/mp3/timbre_de_bicicleta_2.mp3" type="audio/mp3">
</audio>
It will not let me play the audio because the document.getElementById ("myaudio"). Volume = 5 ; It can only be a maximum of 1, how could the volume increase? I agree to use jQuery. Thanks in advance.     
asked by Qwerty 22.05.2018 в 16:42
source

0 answers