insertar reproductor windows media player

gbaruch
24 de Agosto del 2009
hola, que codigo se necesita para insertar un reproductor windows media player en una web pag.
de antemano, muchas gracias.!!!

V?or
24 de Agosto del 2009
Y no hay algun codigo de otro reproductor, sin necesidad del front page?

Pady
24 de Agosto del 2009
Supongo que debes probar:
<EMBED SRC="Canción.mp3"autostart="false"> Hay otros parámetros. Si es eso, prueba a buscar EMBED en google para ampliar información

Pady
24 de Agosto del 2009
No sé porqué salen las barras "/", yo no las he puesto

a
24 de Agosto del 2009
No necesitas un codigo, enel front page has de darle insertar componentes web avanzados active x ,y supongo que no te aparecera en la lista entonces le das a personalizar y en la lista te aparece ewindows media añadelo y estara en la lista anterior.

davmar27
24 de Agosto del 2009
Hey man, me sirvio muchas gracias por el dato

ma de laluz
24 de Agosto del 2009
hola
deseo inserta
unreproductor ami chat pero necesito
su url par aaserlo

Soy nuevo DJ EVert
24 de Agosto del 2009
<HTML>
<HEAD>
<TITLE>Document Title</TITLE>
</HEAD>

<BODY>

<script language="JavaScript">
<!--
if ( navigator.appName == "Netscape" )
{
//-- This next line ensures that any plug-ins just installed are
updated in the browser
//-- without quitting the browser.
navigator.plug-ins.refresh();
// We don't need the APPLET within IE
// ***Please note that if you do not need to script events, you can
safely remove the next two lines
document.write("x3C" + "applet MAYSCRIPT
Code=NPDS.npDSEvtObsProxy.class")
document.write(" width=5 height=5 name=appObsx3E x3C/appletx3E")
}
//-->
</script>

<!-- Set ShowControls, ShowDisplay, ShowStatusBar to value 0 to not display
the corresponding thing under the video window -->
<OBJECT ID="MediaPlayer" WIDTH=320 HEIGHT=240
classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
codebase="http://activex.microsoft.com/activex/controls/
mplayer/en/nsmp2inf.cab#Version=6,4,7,1112"
standby="Loading Microsoft Windows Media Player components..."
type="application/x-oleobject">
<PARAM NAME="FileName" VALUE="Station1.asx">
<PARAM NAME="ShowControls" VALUE="1">
<PARAM NAME="ShowDisplay" VALUE="1">
<PARAM NAME="ShowStatusBar" VALUE="1">
<PARAM NAME="AutoSize" VALUE="1">
<Embed type="application/x-mplayer2"
pluginspage="http://www.microsoft.com/windows/windowsmedia/download"
filename="Station1.asx"
src="Station1.asx"
Name=MediaPlayer
ShowControls=1
ShowDisplay=1
ShowStatusBar=1
width=320
height=240>
</embed>
</OBJECT>

</BODY>
</HTML>