Remove/Disable audio icon

I have a basic video project made in Hype.
It has no sound.
Client is asking if this audio icon appearing in browser can be removed?

Thanks in advance for any tips.

a simple googlesearch pops up with some css for webkitbrowsers:

video::-webkit-media-controls-volume-slider {
display:none;
}

video::-webkit-media-controls-mute-button {
display:none;
}
5 Likes