我在Internet Explorer上使用video.js(v 4.3.0)和flash播放器。 如何将视频拉伸到容器区域,如下例http://www.aleosoft.com/flashtutorial_autofitexample.html?
我已尝试对video.dev.js文件进行一些修改,以便在生成的Flash对象上添加<PARAM NAME="SCALE" VALUE="exactfit">
。而且我已经将wmode从opaque更改为透明,就像在示例页面代码中一样。修改后的video.js会生成如下的flash播放器,但仍然无法拉伸。
<object width="100%" height="100%" class="vjs-tech" name="video_1_flash_api" id="video_1_flash_api" data="video-js.swf" type="application/x-shockwave-flash" style="display: block;">
<param value="video-js.swf" name="movie">
<param value="readyFunction=videojs.Flash.onReady&eventProxyFunction=videojs.Flash.onEvent&errorEventProxyFunction=videojs.Flash.onError&autoplay=true&preload=auto&loop=undefined&muted=undefined&src=http%3A%2F%2Flocalhost%2Fh5mp%2F_html%2F1.html&" name="flashvars">
<param value="exactfit" name="scale">
<param value="always" name="allowScriptAccess">
<param value="all" name="allowNetworking">
<param value="transparent" name="wmode">
</object>