IE10 not playing a video when using the <video> tag, but plays it when requesting the video directly

后端 未结 7 1092
太阳男子
太阳男子 2020-12-10 22:01

I have a webpage with a tag on it with the following markup:

相关标签:
7条回答
  • 2020-12-10 23:02

    When you paste the URL to your browser it doesn't use HTML5 player anymore, so it doesn't say that it is really a supported file; only that the file path should be valid.

    According to wikipedia, IE10 supports (not only) H.264 for video and AAC for audio - these are very common formats for mp4 container. Chrome's support is much wider (video- and audio-wise).

    The problem is that the Intro.mp4 file might have different formats altogether (the file could by just renamed or created using unsupported formats).

    I'd look into the file using properties->details or third party programs (for example Media Info).

    I don't think it is IE10's issue. The only similar one I've found is when the user was too specific using unsupported format of used codecs ([...] type='video/mp4; codecs="H.264, AAC"' [...]).

    0 讨论(0)
提交回复
热议问题