Dreamweaver - mostrar video en la web

 
Vista:

mostrar video en la web

Publicado por dvinatea (3 intervenciones) el 02/08/2007 21:14:16
Hola,
El video se ve en dreamweaver pero no logro que se vea en la web. Me reporta un error que es "SWFObject no está definido". Este es el código:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Mostrar Video</title>
<script type="text/javascript" src="swfobject.js"></script>
</head>
<body>
<div id="flashcontent">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="320" height="276">
<param name="movie" value="video2.swf" />
<param name="quality" value="high" />
<embed src="video2.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="320" height="276"></embed>
</object>
</div>
<script type="text/javascript">
var so = new SWFObject("video2.swf", "mymovie", "320", "276", "8", "#336699");
so.write("flashcontent");
</script>
</body>
</html>
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder