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

Community
  • 1
  • 1
Caleb Kester
  • 1,650
  • 2
  • 14
  • 16
  • 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. – Brad Semrad Feb 09 '12 at 23:29
  • 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. – Caleb Kester Feb 10 '12 at 00:03

2 Answers2

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
longi
  • 11,104
  • 10
  • 55
  • 89
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/

albert
  • 8,112
  • 3
  • 47
  • 63
  • 2
    saved by the wayback machine yet again! http://web.archive.org/web/20130212103241/http://blog.j6consultants.com.au/2011/01/10/cross-browser-html5-video-running-under-iis-7-5 – albert Dec 18 '14 at 15:25