我正在制作一个包含 .ogg 和 .mp4 视频的网站,但由于某种原因,当我在 chrome 中访问我的网站时,它在由 hostmonster 托管时无法播放。该视频在本地主机上运行良好,所以我不知道为什么它不起作用。
如果有帮助,这是我的代码:
<video width="100%" height="100%" >
<source src="web.ogg" type="video/ogg" autoplay="autoplay">
<source src="web.mp4" type="video/mp4" autoplay="autoplay">
Your browser does not support the video tag.
</video>