Bonjour,

J'ai décidé d'utiliser flowplayer pour afficher des vidéos sur mon site compatible avec mobile, le player marche effectivement sur mobile, mais je rencontre des problèmes sur Chrome et IE

Chrome, marche en local mais pas en ligne
Ie, les vidéos se chargent mais je doit rafraichir la page pour pouvoir les lancer

Voici le code de ma page:

<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!-- A minimal Flowplayer setup to get you started -->


<!--
include flowplayer JavaScript file that does
Flash embedding and provides the Flowplayer API.
-->
<script type="text/javascript" src="../flowplayer-3.2.8.min.js"></script>
<script type="text/javascript" src="../flowplayer.ipad-3.2.8.js"></script>

<!-- some minimal styling, can be removed -->
<link rel="stylesheet" type="text/css" href="style.css">

<!-- page title -->
<title>Kub Test flowplayer</title>

</head><body>

<div id="page">

<h1>Test Flowplayer </h1>

<p>Ceci est un test de flowplayer</p>

<!-- this A tag is where your Flowplayer will be placed. it can be anywhere -->
<a
href="Kublogo.mp4"
style="display:block;width:520px;height:330px"
id="player">
</a>

<!-- this will install flowplayer inside previous A- tag. -->
<script>
$f("player", "../flowplayer-3.2.9.swf").ipad();
</script>



<!--
after this line is purely informational stuff.
does not affect on Flowplayer functionality
-->


</div>


</body></html>

Merci d'avance