when I upload it to my website it will only work in chrome...for all 3 video types.
firefox reports "video format or mime type not supported". I have used filename.ogv,
filename.webm, and filename.mp4. Whether I list all three video types, as seen in
below, or only list one at a time, only chrome will play them and it plays
them all....firefox plays the page perfectly from its folder on my local hard drive.
Can anyone help me please? sigh...it works so well in chrome...(I am aware that it
is unsupported in IE but that is irrelevant for my purposes)
this has occured on xp and win7 systems
I know the script is very basic, and I don't know why it won't work. Any help would be appreciated...
as I am very new at this. what am I doing wrong???
- Code: Select all
<html>
<head>
<title>5990 Waterfall Way</title>
<style>
body{ background: black;
color: #000000;
</style>
</head>
<body>
<center>
<br><br><br><br><br><br><br><br>
<video controls="controls" tabindex=0 autoplay="autoplay">
<source src="5990_Waterfall_Way.webm" type="video/webm" />
<source src="5990_waterfall_way.ogv" type="video/ogg" />
<source src="5990_Waterfal_Way.mp4" type="video/mp4" />
</video>
</center>
</body>
</html>