嵌入wmv在所有的Chrome浏览器,IE浏览器和Firefox浏览器

vc6uscn9  于 2022-12-28  发布在  Go
关注(0)|答案(1)|浏览(442)

下面的代码可以在IE,Firefox但不能在Chrome中工作。什么样的变化是必要的,使它在Chrome中工作。Chrome说“没有插件可用于显示此内容”。我从以下代码:Embedding Windows Media Player for all browsers

<object id="mediaplayer" classid="clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#version=5,1,52,701" standby="loading microsoft windows media player components..." type="application/x-oleobject" width="320" height="310">
<param name="filename" value="./test.wmv">
 <param name="animationatstart" value="true">
 <param name="transparentatstart" value="true">
 <param name="autostart" value="true">
 <param name="showcontrols" value="true">
 <param name="ShowStatusBar" value="true">
 <param name="windowlessvideo" value="true">
 <embed src="./test.wmv" autostart="true" showcontrols="true" showstatusbar="1" bgcolor="white" width="320" height="310">
tp5buhyn

tp5buhyn1#

您需要在客户端下载WMV文件的插件,这意味着任何使用Chrome浏览器访问网站的人都需要已经安装了installed the Chrome plugin locally
HTML5视频/Flash视频可能是一个更好的方式来实现这一点,并使其无缝的用户。Here's an example for HTML 5 video

相关问题