Link to home
Start Free TrialLog in
Avatar of BrighteyesDesign
BrighteyesDesignFlag for Afghanistan

asked on

HTML5 quick loading video

Basically I need to show a video on a webpage. This video needs to start as soon as there's enough to play. Until now I have created these in Flash but many of my clients are now viewing their websites on iphone, ipad and itouch where of course Flash does not work.

This is why I need to have these videos working in a format other than Flash and ideally in HTML5 to take advantage of the new video tag.

Thanks in advance!
Avatar of Bardobrave
Bardobrave
Flag of Spain image

Try this:

<video src="movie.ogg" controls="controls" autoplay="autoplay">
your browser does not support the video tag
</video>

More here:

http://www.w3schools.com/html5/tag_video.asp
ASKER CERTIFIED SOLUTION
Avatar of kmead6
kmead6
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of BrighteyesDesign

ASKER

Thanks for the detailed response!

Even I cannot go wrong with that information  : )

Thanks again