magento - Source video tag does not work.HTML -
i have page:
i want add video of own , use source code
<p><video id="samplemovie" width="320" height="240" src="wysiwyg/movie.avi" controls="controls"></video></p>
unfortunately not work ... wrong in writing?
the site made magento, can problem?
thanks in advance!
edit:
console error:
failed load resource: server responded 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>
i changed video source , error appears in console still not working video
most browsers don't support .avi format. use h.264 (mpeg-4 avc), ogg theora (vp3), webm (vp8)
. this:
<video width="320" height="240" controls> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> browser not support video tag. </video>
btw, there shouldn't issues between magento cms pages , video tag (i used many times).
Comments
Post a Comment