magento - Source video tag does not work.HTML -


i have page:

link

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?

link2

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

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -