D'abord, il faudrait convertir ton avi en streaming. Pour que les utilisateurs n'aient pas à télécharger tes 2 heures d'avi à chaque fois qu'ils voudront le regarder. Il y a divers formats, mais je te conseille le format .wmv
Ensuite, tu devras transférer ton fichier .wmv vers ton server.
Puis, il faudra entrer un code similaire à celui ci-dessous dans tes pages HTML où tu veux que les gens accèdent à ton fichier .wmv en streaming.
Dans cet exemple, le fichier .wmv s'appelle mavideo.wmv qui se trouve dans le dossier medias en partant de la racine de ton site
Code:<object id="wmp" width=360 height=288 classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex...rsion=6,0,0,0" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject"> <param name="FileName" value="medias/mavideo.wmv"> <param name="ShowControls" value="1"> <param name="ShowDisplay" value="0"> <param name="ShowStatusBar" value="0"> <param name="AutoSize" value="1"> <param name="autoplay" value="0"> <embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/windows95/d...r/default.asp" src="medias/mavideo.wmv" name=MediaPlayer2 showcontrols=1 showdisplay=0 showstatusbar=1 autosize=1 visible=1 animationatstart=0 transparentatstart=1 loop=0 height=288 width=360> </embed> </object>