I need help on embedding a .flv file into a website. I have tried the following two codes to no avail:
code:
<html>
<body>
<script type="text/javascript" src="https://media.dreamhost.com/ufo.js"></script>
<p id="simpsons_CUT.flv"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.</p>
<script type="text/javascript">
var FO = { movie:"http://www.th3rmal.com/dana/simpsons/simpsons_CUT.flv",width:"575",height:"400",majorversion:"7",build:"0",bgcolor:"#FFFFFF",
flashvars:"file=http://www.th3rmal.com/dana/simpsons/simpsons_CUT.flv&showdigits=true&autostart=false" };
UFO.create(FO,"simpsons_CUT.flv");
</script>
</body>
</html>
and
code:
<html>
<body>
<div id="mvcontainer"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.</div>
<script type="text/javascript" src="http://www.th3rmal.com/dana/simpsons/simpsons_CUT.flv"></script>
<script type="text/javascript">
var s1 = new SWFObject("http://www.th3rmal.com/dana/simpsons/simpsons_CUT.flv","ply","320","260","9","#FFFFFF");
s1.addParam("allowfullscreen","true");
s1.addParam("allowscriptaccess","always");
s1.addParam("flashvars","file=http://www.th3rmal.com/dana/simpsons/simpsons_CUT.flvℑ=https://media.dreamhost.com/mp4/preview.jpg");
s1.write("mvcontainer");
lt;/script>
</body>
</html>
The file is located at
http://www.th3rmal.com/dana/simpsons/simpsons_CUT.flv
With the first code, the movie doesnt seem to load at all, while with the second code, the error of "Get Flash Player" seems to come up.
Any help would be appreciated