video.js 在Edge上不能工作,请问怎么办
发布网友
发布时间:2022-04-23 01:57
我来回答
共2个回答
热心网友
时间:2022-04-20 21:37
然后本地拿数据。
chrome一切正常,但是IE无法播放。
报错如下:
VIDEOJS: ERROR: (CODE:4 MEDIA_ERR_SRC_NOT_SUPPORTED) The video could
not be loaded, either because the server or network failed or because
the format is not supported. [object Object]
google说是mimeType的问题,然而我改过
video/mp4
video/x-m4v
都是没用的。
代码是官网下载下来的,可以运行。但是src改成我的视频之后就不能用了。请大神指点一二.
视频格式:mp4
代码:
<!-- head标签里 -->
<link href="//cdn.bootcssm/video.js/4.12.15/video-js.min.css" rel="stylesheet">
<!-- 内容开始 -->
<video id="video" class="video-js vjs-default-skin" controls
preload="auto" width="100%" height="555px" poster=""
data-setup='{}'>
<source src="http://7xjhkb.com1.z0.glb.cloudom/foo.mp4" type='video/mp4' >
<source src="really-cool-video.webm" type='video/webm'>
<p class="vjs-no-js">
To view this video please enable JavaScript, and consider upgrading to a web browser
that <a href="http://videoom/html5-video-support/" target="_blank">supports HTML5 video</a>
</p>
</video>
<!-- 内容结束 -->
热心网友
时间:2022-04-20 22:55
你的显示文字div需要放在视频标签(video)外边才可以看到 下边是显示文字div的css样式.wenzi{ position: relative; float: left; top: 100px; color: #f00; width: 320px; height: 30px; text-align: center; z-index:1;}