
Error in IE10 and IE 11
Hi jwplayer team,
we want update our jwplayer from version 6.1 to 6.9.
In our virtual machine all browser works fine except for IE10 and IE11, Win7!
I have tested it in Multi-Browser View (http://www.MultiBrowserViewer.com), version 4.7.0.0.
Adobe Flash Player 14.0.0.145
To this end I created an extra page.
The code:
[code]
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="http://mydomain.de/jwplayer.js"></script>
<script type="text/javascript">jwplayer.key=" --- here the key code ---"</script>
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="/css/IE5_IE6.css" media="screen, projection"/>
<![endif]-->
</head>
<body>
<div class="video">
<div id="mediaspace_video">
<noscript>Zum Abspielen des Videos wird JavaScript benötigt. Bitte aktivieren Sie JavaScript in Ihrem Browser.<br/><br/></noscript>
Zum Abspielen des Videos wird Flash benötigt.<br/> Eine aktuelle Version können Sie kostenlos unter <a href="http://get.adobe.com/de/flashplayer/">get.adobe.com/de/flashplayer/</a> herunterladen.
</div>
<script type="text/javascript">
jwplayer("mediaspace_video").setup({
'height': '279',
'width': '496',
'image': 'http://mydomain.de/path_to_the_video/image_file.jpg',
'stretching':'exactfit',
'levels': [
{ label: '240', file: 'http://mydomain.de/path_to_the_video/video_file_S.mp4' },
{ label: '360', file: 'http://mydomain.de/path_to_the_video/video_file_M.mp4' },
{ label: '480', file: 'http://mydomain.de/path_to_the_video/video_file_L.mp4' },
{ label: '576', file: 'http://mydomain.de/path_to_the_video/video_file_XL.mp4' },
{ label: '720', file: 'http://mydomain.de/path_to_the_video/video_file_XXL.mp4' }
]
});
</script>
</div>
</body>
</html>
[/code]
I get the error:
Error loading media: File could not be played.
In IE9 works fine, in the same software (Multi-Browser View) ?
Someone sees an error in the code?
In my local machine I have Win7 64Bit with IE9, here IE9 is working correctly!
Other browser, like Chrome or FF work fine.
regards