how to add videos in your application using HTML5

Nithadeepak
Posted by Nithadeepak under HTML 5 category on | Points: 40 | Views : 5415
<body>
<video controls="controls" >
<source src="http://clips.vorwaerts-gmbh.de/VfE_html5.mp4" type="video/mp4" /><!-- Safari / iOS, IE9 -->
<source src="http://clips.vorwaerts-gmbh.de/VfE.webm" type="video/webm" /><!-- Chrome10+, Ffx4+, Opera10.6+ -->
<source src="http://clips.vorwaerts-gmbh.de/VfE.ogv" type="video/ogg" /><!-- Firefox3.6+ / Opera 10.5+ -->
</video>
</body>


The control attribute is for adding play, pause, and volume controls.
Only latest browsers support video tag.

Comments or Responses

Posted by: Akiii on: 8/3/2011 Level:Bronze | Status: [Member] | Points: 10
Nice one nitha.....
Technology is improving a lot nowadays...good for us!

Thanks and Regards
Akiii
Posted by: Nithadeepak on: 8/4/2011 Level:Bronze | Status: [Member] | Points: 10
Exactly Akiii....
HTML5 and CSS3...Simply superb
Posted by: Akiii on: 8/4/2011 Level:Bronze | Status: [Member] | Points: 10
Hi Nitha,
Have you used border-radius in IE...?
I have used border radius but its not working in IE, apart from IE, every other browser is supporting that ..!

Please let me know if you have any thought about this matter...!

Thanks and Regards
Akiii
Posted by: Nithadeepak on: 8/4/2011 Level:Bronze | Status: [Member] | Points: 10
IE9 supports border-radius. Try this in IE9
Posted by: Akiii on: 8/5/2011 Level:Bronze | Status: [Member] | Points: 10
Hi nitha,
I need that border-radius in IE8.........!
unfortunately i didnt find anything yet..!

Regards
Akiii

Posted by: Nithadeepak on: 8/6/2011 Level:Bronze | Status: [Member] | Points: 10
IE8 doesn't support the features of css3.

Internet Explorer 9 supports some of the new properties (full support is not yet achieved)
Posted by: Akiii on: 8/7/2011 Level:Bronze | Status: [Member] | Points: 10
Hi nitha,
Yes you are right....
As i have seen all the browsers except IE doesnt support many things.....
All other browsers seems to be okay regarding styles....

Thanks and Regards
Akiii
Posted by: Sudheep.grandhe on: 9/20/2011 Level:Starter | Status: [Member] | Points: 10
Hi Nitha,

I am not able to understand the features of HTML5.what is the difference b/w this html5 and previous versions.why specificly called as HTML5.can you please give the explanation

Regards,
Sudheep.
Posted by: Akiii on: 9/20/2011 Level:Bronze | Status: [Member] | Points: 10
Hi Sudheep....

please check this link:-

http://www.developerdrive.com/2011/08/10-essential-differences-between-html4-and-html5/

Thanks and Regards
Akiii
Posted by: Varaprasadm.84 on: 6/11/2012 Level:Starter | Status: [Member] | Points: 10
Hi,

I am getting the Error message "No video with supported format and MIME Type found" when i am adding the video tag in ASP.NET and my firefox version is 12.0


Login to post response