<video id="myPlayer" controls muted>
<source src="Your audio source" type="video/mp4">
Your browser does not support the video tag.
</video>
The keyword mutedwill start the video with the sound turned off, and controlswill include html5 controls where the user can turn on the sound.
if you do not want to use html player. then you can execute the following code with android to turn on the sound whenever you want
Enable
String s = "var video = document.getElementById('your-video-id');";
s+="video.muted= false";