Si j´ai bien compris, tu veux seulement afficher le plugin Windows Media Player dans la page.
<embed type="application/x-mplayer2" src="fichier.wmv" width="320" height="240" autostart="1" showcontrols="1"></embed>
Exemple dans une page :
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Stric
t//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd
">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
<head>
<title>VIDÉO</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
- global {
position: relative;
text-align: center;
width: 100%;
}
- video {
position: absolute;
width: 320px;
left: 50%;
margin-left: -160px;
border: 1px solid #000;
}
</style>
</head>
<body>
<div id="global">
<div id="video">
<embed type="application/x-mplayer2" src="fichier.wmv" width="320" height="240" autostart="1" showcontrols="1"></embed>
</div>
</div>
</body>
</html>
Après tu mets la page sur ton serveur.