我有问题调整.avi文件没有在带窗口媒体播放器的morzila firefox中打开
我的代码是
<html>
<head>
</head>
<body>
<object width="425px" height="360px" >
<param name="allowFullScreen" value="true"/>
<param name="wmode" value="transparent"/>
<param name="movie" value="video.avi"/>
<embed src="video.avi" width="425" height="360" allowFullScreen="true" type="application/x-shockwave-flash" wmode="transparent"/>
</object>
</body>
</html>
播放我的视频 IE中的视频播放,但在Morzila Fire fox中无法播放
答案 0 :(得分:2)
首先,请勿使用此type
:application/x-shockwave-flash
。 .swf
允许浏览器通过Flash播放器加载它。
现在,如果您想使用其他玩家来玩avi,您可以使用以下类型:
有关WMP插件的更多信息以及如何在the Plugin Doc of Mozilla
中加载它(通过页面来源)最后,您没有义务使用WMP插件,可能希望使用html5中的新<video>
标记或Flash播放器: