我有这个页面:
我想添加自己的视频,并使用此源代码
<p><video id="sampleMovie" width="320" height="240" src="wysiwyg/movie.avi" controls="controls"></video></p>
不幸的是不起作用......我的写作中出了点问题?
该网站是用Magento制作的,这可能是个问题吗?
提前致谢!
编辑:
控制台错误:
Failed to load resource: the server responded with a status of 404 (Not Found)
EDIT2:
<p><video id="sampleMovie" width="320" height="240" src="http://www.moment-of-style.com/media/wysiwyg/movie.avi" controls="controls"></video></p>
我更改了视频源,但错误仅出现在控制台中,但仍无法正常播放视频
答案 0 :(得分:0)
大多数浏览器都不支持.avi格式。使用H.264 (MPEG-4 AVC), OGG Theora (VP3), WebM (VP8)
。像这样:
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
顺便说一下,magento cms页面和视频标签之间不应该有任何问题(我多次使用过它)。