ça te fait peut-être rire, mais une balise de 95 capable de lire des WMV de 2002, oui, j'appelle ça en avance sur son temps.
Ensuite pour l'accessibilité, tu veux m'expliquer en quoi :
Code :
- <OBJECT ID="MMPlayer1" WIDTH="640" HEIGHT="480"
- classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
- CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#
- Version=5,1,52,701"
- standby="Loading Microsoft Windows Media Player components..."
- type="application/x-oleobject">
- <PARAM NAME="FileName" VALUE="../captures/mouvement/<? echo $fichier; ?>">
- <PARAM NAME="ShowControls" VALUE="1">
- <PARAM NAME="ShowStatusBar" VALUE="1">
- <PARAM NAME="ShowDisplay" VALUE="0">
- <PARAM NAME="DefaultFrame" VALUE="Slide">
- <PARAM NAME="Autostart" VALUE="1">
- <a href="../../captures/mouvement/<? echo $fichier; ?>">Télécharger la vidé</a>
- </OBJECT>
|
Est plus accessible que ça :
Code :
- <OBJECT ID="MMPlayer1" WIDTH="640" HEIGHT="480"
- classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
- CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#
- Version=5,1,52,701"
- standby="Loading Microsoft Windows Media Player components..."
- type="application/x-oleobject">
- <PARAM NAME="FileName" VALUE="../captures/mouvement/<? echo $fichier; ?>">
- <PARAM NAME="ShowControls" VALUE="1">
- <PARAM NAME="ShowStatusBar" VALUE="1">
- <PARAM NAME="ShowDisplay" VALUE="0">
- <PARAM NAME="DefaultFrame" VALUE="Slide">
- <PARAM NAME="Autostart" VALUE="1">
- <embed type="application/x-mplayer2"
- pluginspage="http://www.microsoft.com/Windows/MediaPlayer/download/default.asp"
- src="../../captures/mouvement/<? echo $fichier; ?>"
- Name=MMPlayer1 Autostart=1 ShowControls=1
- ShowDisplay=0 ShowStatusBar=1 DefaultFrame="Slide"
- width="640" height="480">
- </embed>
- </OBJECT><br>
- <a href="../../captures/mouvement/<? echo $fichier; ?>">Télécharger la vidé</a>
|
La seule différence entre les 2, c'est que la seconde fonctionne sur 2 fois plus de navigateur, niveau accessibilité, la seconde est donc supérieure à la première.