
Why is a .mov file not displayed in IE, Chrome or FF?
I tried to use jwPlayer for the display of a movie in a "IMG_0205.MOV" file in a slide show, see
http://www.andrewolff.nl/testjalbum/slides/IMG_0205.html
This page works fine with Safari, but not with IE, Chrome, FF or on the iPad.
If I use the same page to play a "2011-09-02 15 53 24.mp4" file, it works fine in Safari, Chrome, FF, IE and on the iPad.
I use version 5.10 with the next code:
bc.. <div id='player' >This div will be replaced by the JW Player.</div>
<script type='text/javascript' src='../../jwplayer/jwplayer.js'></script>
<script type='text/javascript'>
pause = true;
jwplayer('player').setup({
'flashplayer': '../../jwplayer/jwplayer/player.swf',
'autostart': 'true',
'controlbar': 'bottom',
'width': '100%',
'height': '95%',
//'file': '2011-09-02 15 53 24.mp4', // OK on Safari, IE and Chrome, not in FF
'file': 'IMG_0205.MOV', // OK on Safari, not on IE and Chrome
events: {
onComplete: function(event) { next(); }
},
'modes': [
{type: 'html5'},
{type: 'flash', src: '../../jwplayer/jwplayer/player.swf'},
{type: 'download'}
]
});
</script>
What do I wrong?