This is interesting ....[?!?] still haven't found anything working for you on internet?!
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>Windows Media Player</title>
<style type="text/css">
#Player,
input{width:400px;}
p input{width:97px}
</style>
</head>
<body>
<INPUT TYPE="File" VALUE="Megamix.mp3" onChange="Player.URL = this.value">
<p>
<INPUT TYPE="BUTTON" VALUE="Play" OnClick="Player.controls.play()">
<INPUT TYPE="BUTTON" VALUE="Stop" OnClick="Player.controls.stop()">
<INPUT TYPE="BUTTON" VALUE="Pause" OnClick="Player.controls.pause()">
<INPUT TYPE="BUTTON" VALUE="Full Screen" OnClick="if (Player.playState == 3)
Player.fullScreen = 'true'">
</p>
<p></p>
<SCRIPT type="text/javascript">
if(-1 != navigator.userAgent.indexOf("MSIE"))
{
document.write('<OBJECT id="Player"');
document.write(' classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6"');
document.write(' width=300 height=200></OBJECT>');
}
else if(-1 != navigator.userAgent.indexOf("Firefox"))
{
document.write('<OBJECT id="Player"');
document.write(' type="application/x-ms-wmp"');
document.write(' width=300 height=200></OBJECT>');
}
</SCRIPT>
</body>
</html>