我尝试使用以下代码播放视频,这适用于Chrome,mozila和Safari,但不适用于IE。你能告诉我如何在IE上播放视频吗?
<iframe width="560" height="315" src="https://www.youtube.com/embed/myS7iZg2WzY" frameborder="0" allowfullscreen></iframe>
<br /><br /><br />
<embed src="https://www.youtube.com/embed/myS7iZg2WzY" autostart="true" >
<br /><br /><br />
<video width="320" height="240" controls>
<source src="https://www.youtube.com/embed/myS7iZg2WzY" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
由于
答案 0 :(得分:0)
您的HTML5提取有三个视频 - 前两个将在IE上播放(确保iFrames已启用,如Secespitus所说,但通常是默认情况下),最后一个不应在任何浏览器上播放。
这三个视频通过以下方式插入到页面中:
<iframe width="560" height="315" src="https://www.youtube.com/embed/myS7iZg2WzY" frameborder="0" allowfullscreen></iframe>
第二个:
<embed src="https://www.youtube.com/embed/myS7iZg2WzY" autostart="true" >
和第三个:
<video width="320" height="240" controls>
<source src="https://www.youtube.com/embed/myS7iZg2WzY" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
对于包含视频的网页而不是视频本身,最后一个不会作为您设置的来源播放。
如果你只是想嵌入视频本身,那么第一个嵌入行应该可以工作。