flash fallback video black screen - no video, only audio media element

∥☆過路亽.° 提交于 2019-11-30 06:03:04

The problem was position:absolute on the css .me-plugin amazing

I really hope this helps others. It was a total fluke that I tried it.

gregmatys

If anyone has troubles with flash fallback in ie8, for me that code helps:

var player = new MediaElementPlayer('#player', {
    /* ... place your options here ... */
    enableAutosize: true,
    success: function(player, node) {
        player.setVideoSize(480,325);
    }
} 
WhoaThemes -

Mediaelement.js works in IE8 if you set the position: static; and not absolute as it currently is, to the div with the class .me-plugin.
It will still show a black video if you test with IE9 Browser Mode IE8. Just check with IeTester or on a pc with XP.

Hope that helps...

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!