Search code examples
javascriptasp.netvideoflowplayermov

FlowPlayer and IE


Have just setup FlowPlayer to play some videos on a new web app i'm working on. Works perfectly well in Safari (iPad), however, it seems i am not getting any audio in IE.

Code:

<div id="videoContainer" style="display: none; text-align: center;">
   <a id="player2" style="display:block; margin:0px auto; width:600px; height:400px"></a>
</div>

and JS:

  var player2 = document.getElementById("player2");
  player2.href = "http://server/Media/" + videoName;
  $f(player2, "http://releases.flowplayer.org/swf/flowplayer-3.2.7.swf", {
     clip: {
        autoPlay: true
     }
  });

Video plays fine, but no audio.

Any ideas?

Thanks.


Solution

  • Could it be that explorer doesnt have the correct codec installed?