JPlayer issue in IE9

北城以北 提交于 2019-12-03 08:33:01

In this thread Mark P. notes that you must have MIME types set properly. Try putting this in your .htaccess:

AddType video/mp4 mp4
AddType video/mp4 m4v

More here: http://www.jplayer.org/latest/developer-guide/#jPlayer-server-response

The current major release (2.0.0) does not support IE9, but support is being added as of version 2.0.8 (github).

Put this line of code at the very beginning of your document.

<!DOCTYPE html> It forces IE9 to work under standard document mode.

Ref: http://msdn.microsoft.com/en-us/ie/ff468705

I had the same issue. Resolved it by forcing IE9 to use Flash instead of html5.

jPlayer({
    "solution": navigator.userAgent.indexOf("Trident/5")>-1 ? "flash" : "html,flash"
}) 

The problem is IE9 like always jaa, try playing ogg files or m4a and that works

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