Mediaelement.js - 不适用于 Ie6、7 和 8

发布于 2024-12-16 23:46:13 字数 123 浏览 1 评论 0原文

我的媒体元素适用于 FF、Chrome、Safari、Opera 和 IE9,但不适用于 Ie6、7、8!

对于这些浏览器,我只看到一个与视频大小相同的黑匣子。

知道发生了什么。

谢谢

I have media element working for FF, Chrome, Safari, Opera and IE9 but is not working in Ie6,7,8!

For these browsers I'm seeing just a black box with the same size of the video.

Any idea what is happening.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凉城 2024-12-23 23:46:13

可能是回退了,找不到 flash 文件。
为 flash swf 文件提供正确的路径。
当然,您的浏览器需要安装 Flash。

也可以写onerror:函数。
当 HTML5 和 Flash 都失败时它会触发。

Maybe it's falling back and couldn't find the flash file.
Give the right path for flash swf file.
And of course you need flash installed on your browsers.

You can also write onerror: function.
It triggers when both HTML5 and Flash fails.

鲸落 2024-12-23 23:46:13

确保将 mediaelement 下载中的 build 文件夹复制到您的 Web 目录中,并引用其中的 css 和 swf 文件。您在 IE 中看到黑框的原因可能是因为它试图从构建文件夹中查找某些文件,但确实执行了 Flash 操作,但它不在那里。将 build 重命名为 mediaelement 之类的名称。

这两个文件需要从构建目录加载

<script src="build/mediaelement-and-player.min.js"></script>
<link rel="stylesheet" href="build/mediaelementplayer.min.css" />

Make sure you copy the build folder in the mediaelement download into your web dir and reference the css and swf file in there. The reason your seeing a black box in IE is probably because its trying to find some files from build folder do do its flash stuff and its not there. Rename build to something like mediaelement or something.

These two files need to be loaded from the build dir

<script src="build/mediaelement-and-player.min.js"></script>
<link rel="stylesheet" href="build/mediaelementplayer.min.css" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文