I have written the following html code
<!DOCTYPE html>
<head>
<title>Presentation on HTML5</title>
<center>Contents</center>
</head>
<body>
<embed src="v1.mp4" height="240" width="320"/>
<video width="320" height="240" controls="controls">
<source src="v1.mp4" type="video/mp4" />
<source src="v1.ogg" type="video/ogg" />
<source src="v1.webm" type="video/webm" />
</video>
<object data="v1.mp4" height="240" width="320"/>
</body>
</html>
As u see,I have used embed,object and video tag together to run a media element. When I disable the plug-ins in both chrome and firefox browser and run this code,all the videos run inspite of the fact that embed tag requires plug-ins to run a media element. Can anyone explain why chrome is still running video for embed tag though plug-ins are disabled?
There is a problem with chrome. For your ppt use firefox. In firefox the video does not run after the plugin is disabled(with embed tag). But the same video can be run using the video tag of html5.