Video.js初始尺寸,如视频分辨率

时间:2015-03-05 09:44:18

标签: javascript flash video html5-video video.js

我使用来自https://github.com/videojs/video.js的video.js库,我有一个问题。

如果未设置宽度/高度设置(html5和flash video.js模式),是否可以将初始付款人尺寸视为视频分辨率?

原生html5播放器没问题。

代码演示示例:

HTML

<video id="really-cool-video-native" controls preload="auto">
    <source src="//vjs.zencdn.net/v/oceans.mp4" type='video/mp4'>
</video>

<video id="really-cool-video-html5" class="video-js vjs-default-skin">
    <source src="//vjs.zencdn.net/v/oceans.mp4" type='video/mp4'>
</video>

<video id="really-cool-video-flash" class="video-js vjs-default-skin">
    <source src="//vjs.zencdn.net/v/oceans.mp4" type='video/mp4'>
</video>

JS:

videojs.options.flash.swf = "//vjs.zencdn.net/c/video-js.swf";

videojs("really-cool-video-html5", {
    controls : true,
    techOrder : ["html5", "flash"]
}, function() {


});

videojs("really-cool-video-flash", {
    controls : true,
    techOrder : ["flash", "html5"]
}, function() {


});

CSS:

#really-cool-video-native{
    width: 100%;
}

网址:https://jsfiddle.net/msthxLkb/

0 个答案:

没有答案