
Issues with JWPlayer on Ipad
Hi,
I am having a few issues with JWPlayer (latest version) on the Ipad.
I am currently loading a youtube video and my setup looks something like this:
jwplayer(videoId).setup({
file: videoFile,
image: videoImage,
html5player:'/jwplayer/src/jwplayer.html5.js',
flashplayer:'/jwplayer/swf/jwplayer.flash.swf',
skin:'/jwplayer/skins/default/default.xml',
primary: 'html5',
stretching: 'exactfit',
controls: 'true',
width: '100%',
height: '100%',
autostart: 'false',
fallback: 'false'
});
jwplayer(videoId).onBeforePlay( function(event){
console.log('JWPlayer onBeforePlay - event');
});
jwplayer(videoId).onPlay( function(event){
console.log('JWPlayer onPlay - event');
});
jwplayer(videoId).onPause( function(event){
console.log('JWPlayer onPause - event');
});
jwplayer(videoId).onComplete( function(event){
console.log('JWPlayer onComplete - event');
});
This setup works fine across all the browsers on the desktop (Chrome, FF, Safari), however, on the ipad (iOS 6.1.3) there are a few issues:
1. "No suitable players found and fallback enabled" appears in the console
2. Events are not firing (Not even the ready event)
3. Not using the custom skin (still displaying Youtube skin)
Do I have the wrong setup? Or are these bugs in the latest release?
Thanks!