Windows Media Player不播放* .mov文件:(请给我任何建议

时间:2010-10-07 11:26:37

标签: javascript wmp

 <html> 
<head> 
  <title>so-wmp</title> 
  <script> 

    onload=function() { 
      player = document.getElementById("wmp"); 
      player.URL = "test.mp3"; 
    }; 

    function add(text) { 
      document.body 
        .appendChild(document.createElement("div")) 
        .appendChild(document.createTextNode(text)); 
    }; 

    function handler(type) { 
      var a = arguments; 
      add(type +" = "+ PlayStates[a[1]]); 
    }; 

    // http://msdn.microsoft.com/en-us/library/bb249361(VS.85).aspx 
    var PlayStates = { 
       0: "Undefined", // Windows Media Player is in an undefined state. 
       1: "Stopped", // Playback of the current media item is stopped. 
       2: "Paused", // Playback of the current media item is paused. When a media item is paused, resuming playback begins from the same location. 
       3: "Playing", // The current media item is playing. 
       4: "ScanForward", // The current media item is fast forwarding. 
       5: "ScanReverse", // The current media item is fast rewinding. 
       6: "Buffering", // The current media item is getting additional data from the server. 
       7: "Waiting", // Connection is established, but the server is not sending data. Waiting for session to begin. 
       8: "MediaEnded", // Media item has completed playback. 
       9: "Transitioning", // Preparing new media item. 
      10: "Ready", // Ready to begin playing. 
      11: "Reconnecting" // Reconnecting to stream. 
    }; 

  </script> 
  <script for="wmp" event="PlayStateChange(newState)"> 
    // http://msdn.microsoft.com/en-us/library/bb249362(VS.85).aspx 
    handler.call(this, "playstatechange", newState); 
  </script> 
</head> 
<body> 
  <div id="page"> 
    <object id="wmp" 
       classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" 
          type="application/x-oleobject"> 
    </object> 
  </div> 
</body> 
</html> 

1 个答案:

答案 0 :(得分:0)

.mov files are QuickTime files。 Windows Media Player无法开箱即用播放QuickTime文件。

QuickTime是Apple创建的应用程序。 Windows Media Player是Microsoft创建的应用程序。很惊讶他们不能立即兼容?你不应该。

解决方案:,如@Andrew Bullock所述,请勿尝试将它们一起使用(至少在浏览器中)。使用其他播放器或其他多媒体格式。