WebSite X5Help Center

 
Kurt W.
Kurt W.
User

Video Player in HTML5 is needed!  en

Author: Kurt W.
Visited 1640, Followers 1, Shared 0  

Mobile phone compatible HTML5 video player needed! The HTML5 photo gallery works great in the current version, but video player is still flash based and won't work with smart phones and tablets. I thought WebsiteX5 Evolution 9 was entirely HTML5 compatible, but lacking the video player in HTML5 is a drawback. Please include a HTML5 video player in the next update. Thank you so much for your wonderful software. I love it! Keep up with the great work.

Posted on the
1 ANSWERS
Emilio E.
Emilio E.
User

you can do itwithhtmlcodeas follows:

<video width="640" height="360" controls autoplay preload>
 
<source src="mivideo.mp4" type='video/mp4; codecs="avc1,mp4a"' />
<source src="mivideo.ogv" type='video/ogg; codecs="theora,vorbis"' />
<source src="mivideo.webm" type='video/webm; codecs="vp8,vorbis"' />
 
</video>

you just have toturn yourvideointothe formatsabove

and yourserver must supportthese file typesto work

Read more
Posted on the from Emilio E.