Merci pour vos réponses.
Je suis certain que le probléme ne vien pas de l'utilisateur, car j'ai testé sur 8 PC différent, et toujours le même probléme.
Et j'ai des centaines de membres qui me signal ça depuis plusieur années.
Pour le script, j'en ai déjà essayé au moins 30 différents, mais ça n'a jamais marché.
mais voici celui que j'utilise actuellement :
<script type=\"text/javascript\">show_video('" . $video_w . "', '" . $video_h . "', '" . $url_video . "', '" . $autostart . "');</script>";
[javascript]function show_flash(w, h, swf)
{
document.write("<object type='application/x-shockwave-flash' data='"+swf+"' width='"+w+"' height='"+h+"'>");
document.write("<param name='movie' value='"+swf+"' />");
document.write("<param name='pluginurl' value='
http://go.divx.com/plugin/download' />");
document.write("<param name='wmode' value='transparent' />");
document.write("<param name='quality' value='best' />");
document.write("<param name='scale' value='exactfit' />");
document.write("</object>");
}
function show_video(w, h, url_hd, start)
{
if (start == 'false') ff_start = 0;
else ff_start = 1;
ext = url_hd.substr(url_hd.lastIndexOf(".") + 1, url_hd.length);
ext = ext.toLowerCase();
if (ext == 'mov' || ext == 'qt')
{
document.write("<object id='QuickTime' classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' codebase='
http://www.apple.com/qtactivex/qtplugin.cab' width='"+w+"' height='"+h+"'>");
document.write("<param name='type' value='video/quicktime' />");
document.write("<param name='autostart' value='"+start+"' />");
document.write("<param name='src' value='"+url_hd+"' />");
document.write("<embed width='"+w+"' height='"+h+"' src='"+url_hd+"' autostart='"+start+"' type='video/quicktime' pluginspage='
http://www.apple.com/quicktime/download/'></embed>");
document.write("</object>");
}
else if (ext == 'avi' || ext == 'wmv')
{
document.write("<object id='DivX' classid='clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616' codebase='
http://go.divx.com/plugin/DivXBrowserPlugin.cab' width='720' height='420'>");
document.write("<param name='custommode' value='none' />");
document.write("<param name='autoPlay' value='false' />");
document.write("<param name='url' value='"+url_hd+"' />");
document.write("<param name='src' value='"+url_hd+"' />");
document.write("<param name='controls' value='ImageWindow' />");
document.write("<param name='console' value='video' />");
document.write("<param name='fullScreen' value='false' />");
document.write("<embed url='"+url_hd+"' width='720' height='420' autostart='1' type='audio/x-pn-realaudio' controls='ImageWindow' console='video'></embed>");
document.write("</object>");
}
else
{
document.write("<object id='MediaPlayer' classid='' codebase='
http://go.divx.com/plugin/DivXBrowserPlugin.cab' type='' width='"+w+"' height='"+h+"'>");
document.write("<param name='autostart' value='1' />");
document.write("<param name='url' value='"+url_hd+"' />");
document.write("<param name='fullScreen' value='1' />");
document.write("<embed width='"+w+"' height='"+h+"' url='"+url_hd+"' autostart='1' type='application/x-mplayer2'></embed>");
document.write("</object>");
}
}[/javascript]