Cómo embeber un video en un html

hola, soy webmaster de una ong (manosporhermanos.org).

En nuestro sitio queremos embeber un video en formato wmv para que pueda ser visualizado tanto en ie como en firefox.

el tema es que no sé por qué, pero no funciona, al menos en firefox

actualmente el código de mi html es:

<html>
<head>
<title>Manos por Hermanos en Patinando por Un Sue&ntilde;o</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFF1E8" text="#000000" leftmargin="0" topmargin="30" marginwidth="0" marginheight="0">
<center><object width="320" height="280"> 
 <embed src="vid/PATINANDO.wmv" type="application/x-shockwave-flash" width="320" height="280"> </embed> 
 </object>
</center>
</body>
</html>

Alguien podrá ayudarme?

Gracias!

Pablo

Asoc. Civil Manos por Hermanos

1 Respuesta

Respuesta
1

El error se debería solucionar usando este código:

<object id="MediaPlayer" width=320 height=280 classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Windows Media Player components..." type="application/x-oleobject" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112">
<param name="filename" value="vid/PATINANDO.wmv">
<param name="Showcontrols" value="True">
<param name="autoStart" value="True">
<param name="wmode" value="transparent">
<embed type="application/x-mplayer2" src="vid/PATINANDO.wmv" name="MediaPlayer" autoStart="True" wmode="transparent" width="320" height="280" ></embed>
</object>

Y el código final sería:

<html>
<head>
<title>Manos por Hermanos en Patinando por Un Sue&ntilde;o</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFF1E8" text="#000000" leftmargin="0" topmargin="30" marginwidth="0" marginheight="0">
<center><object id="MediaPlayer" width=320 height=280 classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Windows Media Player components..." type="application/x-oleobject" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112">
<param name="filename" value="vid/PATINANDO.wmv">
<param name="Showcontrols" value="True">
<param name="autoStart" value="True">
<param name="wmode" value="transparent">
<embed type="application/x-mplayer2" src="vid/PATINANDO.wmv" name="MediaPlayer" autoStart="True" wmode="transparent" width="320" height="280" ></embed>
</object>
</center>
</body>
</html>

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas