HTML5 - mp4 video does not play in IE9

前端 未结 13 2134
一生所求
一生所求 2020-11-27 05:08

I have an mp4 video that I want to play in IE9 using HTML5 tag. I added the MIME type to IIS 7 so if I browse http://localhost/video.mp4

13条回答
  •  情深已故
    2020-11-27 05:42

    If any of these answers above don't work, and you're on an apache server, adding the following to your .htaccess file:

    //most of the common formats, add any that apply
    AddType video/mp4 .mp4 
    AddType audio/mp4 .m4a
    AddType video/mp4 .m4v
    AddType video/ogg .ogv 
    AddType video/ogg .ogg
    AddType video/webm .webm
    

    I had a similar problem and adding this solved all my playback issues.

提交回复
热议问题