我通过cdn嵌入了js。 我的img源和视频源全部来自romote磁盘,img无法扩展到播放器大小。 当我点击播放按钮,但无法播放视频。 我的网站链接: http://www.zeguoren.com/thread-6463-1-1.html
答案 0 :(得分:0)
根据W3C HTML5 specifications:
海报属性,海报框架给出的图像是预期的 成为视频的代表性帧(通常是第一个 非空白帧,让用户知道视频是什么 等。
因此,您应该使用适合视频大小的海报属性的图像。 如果你想看海报img,你还必须将preload属性设置为'none'或'metadata'(参见here)。
关于视频,Internet Explorer 9仅支持.mp4格式。所以你应该添加一个来源:
<video data-setup="{}" poster="http://img142.poco.cn/[...]2043.jpg"
preload="none" class="vjs-tech" id="my_video_1" tabindex="0">
<source type="video/mp4" src="http://storage.live.com/items/F[...]2B!290?a.mp4"></source>
<source type="video/webm" src="http://storage.live.com/items/F[...]2B!290?a.webm"></source>
</video>