我正在尝试将 mp4 文件嵌入到video
andobject
元素中,但无法播放/注册 - 到目前为止我找不到任何类型的插件。如果有人可以推荐一些兼容 Firefox 3.5/Ubuntu Jaunty 的插件就太好了。
答案1
https://developer.mozilla.org/En/HTML/Element/Video据说目前它只支持 ogg theora。也许有一个插件可以做到这一点,但我找不到任何
答案2
最终使用了 jwplayer,你所做的基本上就是引用一个 swf 并传递任何媒体文件,它就会播放它。
http://www.longtailvideo.com/players/jw-flv-player/
<script src="swfobject.js"></script>
<script type="text/javascript">
var s1 = new SWFObject("mediaplayer.swf","single","1280","544","7");
s1.addParam("allowfullscreen","true");
s1.addVariable("file","file.mp4");
s1.addVariable("stretching","exactfit");
s1.addVariable("smoothing","false");
s1.addVariable("wmode", "direct");
s1.write("player1");
</script>