Is there a way to customize the HTML5 video controls to show only the mute/unmute button in the top right corner of the video? I have found a solution by hiding other elements using "display: none;" in CSS for all other ids and buttons, but this might not be the most efficient method. Additionally, this customization only seems to work in Chrome. http://jsfiddle.net/pp6Wn/2/
<div id="video-container">
<video id="my_video" width="100%" height="100%" >
<source src="http://romain-menard.fr/cours_html5/sitedemo/src/small.mp4"
type="video/mp4" />
<source src="video/movie.webm"
type="video/webm" />
</video>
<!-- Video Controls -->
<div id="video_controls_bar">
<button id="playpausebtn"></button>
<span id="curtimetext">00:00</span>
<input id="seekslider" type="range" min="0" max="100" value="0" step="1"><span id="durtimetext">00:00</span>
<button id="mutebtn">Mute</button>
<input id="volumeslider" type="range" min="0" max="100" value="100" step="1">
<button id="fullscreenbtn"></button>
</div>
</div>