MP4 video without converting to...
Is there a way to play an MP4 (or another format that I can convert to and that my customers can see on their IPads and Iphones) video on my coffee cup HTML editor website without converting it to flash, which said customers cannot view on said devices? If not, it seems like that is an opportunity waiting to happen because I would probably buy a program or update that would let me show my non-flash videos on all my customers' devices. Thanks for any help!
http://easyhtml5video.com
That is just one option. HTML will play a variety of video formats, for FREE. Just do a google search and you'll find a few I'm sure.
That is just one option. HTML will play a variety of video formats, for FREE. Just do a google search and you'll find a few I'm sure.
Graphics for the web, email, blogs and more!
-------------------------------------
https://sadduck.com
-------------------------------------
https://sadduck.com
Thanks! Appreciate the help and patience with my ignorance. Great forums here.
Under HTML5, you can have a bare bones video player using just this code:
Check it out here: http://www.w3schools.com/html/html5_video.asp
Using a third-party player (e.g. like the one Gunsmoke mentioned) will add skins and playlists, etc...
<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>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
Check it out here: http://www.w3schools.com/html/html5_video.asp
Using a third-party player (e.g. like the one Gunsmoke mentioned) will add skins and playlists, etc...
A simple way is to use YouTube and embed code.
Keith
Keith
Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.