Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

A HTML5 video I am implementing is not working in ie9. After some debugging, I found that the mime-type is translating the mp4 as application/octet-stream

In my .htaccess file however, I have

AddType video/ogg .ogv

AddType video/mp4 .mp4

AddType video/webm .webm

What have I missed in defining mime-types?

share|improve this question
Does your server configuration allow parsing .htaccess files? Are your .htaccess files allowed to override the AddType MIME types? – sarnold Feb 1 '12 at 4:17
How can I check to see if I'm allowed to override the AddType MIME? Yes my server allows parsing of .htaccess - I am using it a lot. – willdanceforfun Feb 1 '12 at 4:37
You'd be looking for AllowOverride FileInfo or a more general AllowOverride configuration... – sarnold Feb 1 '12 at 4:43
Thanks for that. I tried it in the htaccess and resulted in a 500 Internal Server Error. – willdanceforfun Feb 1 '12 at 4:53
1  
Yeah, that has to be done in the main configuration -- if anyone could supply their own .htaccess that granted them access to overriding everything, there wouldn't be much point to it, right? :) – sarnold Feb 1 '12 at 4:54
show 4 more comments

2 Answers

  • Does the mp4 video URI have a .mp4 extension?
  • Does your VirtualHost/server configuration allow for .htaccess files (AllowOverride directive)?
share|improve this answer
up vote 0 down vote accepted

The answer is:

The MIME types you add on your server cannot override the MIME type on the remote server. If the files hosted elsewhere are stored as a different MIME type, then it will not work. Make sure that the MIME type on the CDN is correct.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.