HTML5 Video not working only in IE9 [duplicate]
Asked Answered
I

2

5

Possible Duplicate:
IE9 HTML5 video support

I am working with a client to try and get their video player working. It seems to work in everything that I can test in except IE9. I'm using videojs (I've tried other ones and the same result).

It seems to be that it's one of 2 things. A setting on their IIS server. Or the video file isn't encoded correctly.

Here's the test page: https://vdsc.com/video-js2/demo.html

Illustration answered 9/2, 2012 at 23:23 Comment(2)
I don't think its an IIS configuration as I can hit the URL in IE9(directly to it) and it will open and play in Windows Media Player.Triviality
Yeah, that's what I was thinking. Another thought is maybe because it's https videoJS doesn't like it. But i've tried using other players as well.Illustration
E
4

had a similiar issue, and i had to register the mime types via .htaccess on my server (mp4 didn t work before).

.htaccess-file:

AddType video/ogg .ogv
AddType video/mp4 .mp4
AddType video/mp4 .mov
AddType video/webm .webm
Embower answered 10/2, 2012 at 8:37 Comment(0)
M
0

pretty sure its the IIS settings; try adding these file name extensions and corresponding MIME types: .webm – “video/webm”

.ogg - “application/ogg”

.ogv - “video/ogg”

.mp4- “video/mp4″

.m4v - “video/m4v”

you can read about it here: http://blog.j6consultants.com.au/2011/01/10/cross-browser-html5-video-running-under-iis-7-5/

Marva answered 10/2, 2012 at 0:25 Comment(1)
saved by the wayback machine yet again! web.archive.org/web/20130212103241/http://…Marva

© 2022 - 2024 — McMap. All rights reserved.