
JW Player Not Working In iOS When Using Latest 5.8 jwplayer.js
Hi,
The following code works on windows/iPhone/iPad when using the 5.7 Player with the 5.7 jwplayer.js
It DOES NOT work when using the 5.8 Player with the 5.8 jwplayer.js
However, It does still work when using the 5.8 Player with 5.7 jwplayer.js
Did something change with the modes in the latest and greatest jwplayer.js?
bc.. <script type='text/javascript'>
jwplayer('playerspace').setup({
'title': 'My Title',
'description': 'My Description',
'file': '/videos/Files/myfile.flv',
'image': '/videos/thumbs/image.jpg',
'skin': '/videos/beelden.zip',
'screencolor': '000000',
'autostart': 'true',
'controlbar': 'bottom',
'width': '600',
'height': '370',
'modes': [
{
type: 'flash',
src: '/videos/player5_8.swf'},
{
type: 'html5',
config: {
'file': '/videos/Files/myfile.mp4'
}},
{
type: 'download',
config: {
'file': '/videos/Files/myfile.mp4'
}}
],
'plugins': {
'gapro-2': {}
}
});
</script>