<audio> can be styled like any other html element.
To increase the width, just use the css width property.
Some html:
<audio id="player" controls autoplay> <source src="http://xseignard.github.com/webGLWebAudioAPI/sound/OGLikeCapone.ogg" type="audio/ogg"> Your browser does not support the audio tag. </audio>
And css:
#player { width: 100%; }
Hi
xavier.seignard
source share