Posible SoundManager 2播放本地声音?

I am create a music library on Localhost and is it possible to use SoundManager 2play a local sound file with path, ex: D:/Music/file.mp3.

<

!DOCTYPE html>
<html>
<head>
  <title></title>
</head>
<body>
<a href="" id="play">play</a>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript" src="js/soundmanager2-nodebug-jsmin.js"></script>
<script type="text/javascript">
$('#play').click(function(e){
  e.preventDefault()
  soundManager.setup({
    url: '/js/',
    onready: function() {
      var mySound = soundManager.createSound({
        id: 'aSound',
        url: 'path/to/file.mp3'
      });
      mySound.play();
    },
    ontimeout: function() {
      // Hrmm, SM2 could not start. Missing SWF? Flash blocked? Show an error, etc.?
    }
  });
})
</script>
</body>
</html>