Video Player in HTML5 is needed!
Author: Kurt W.
Visited 1762,
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
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