Trying to get the iPad player to work with a playlist. Been having a few problems with this, I set up a basic player and although the documentation says you don't need the iPad js file to invoke the plugin I kept getting the 'requires flash' error which only went away when I included the JS file (and then only when i included it in the right order)
Now when I try to use the plugin with a playlist (for a splash image) I just get a blank screen on the ipad/iphone. Anyone know why?
Heres my code:
Now when I try to use the plugin with a playlist (for a splash image) I just get a blank screen on the ipad/iphone. Anyone know why?
Heres my code:
setPlayer = function(playerId, imagePath, moviePath){
$f(playerId, {src: 'flowplayer-3.2.5.swf', wmode: 'opaque'}, {
clip: {
bufferLength: 5
},
plugins: {
/*
viral: {
// load the viral videos plugin
url: 'flowplayer.viralvideos-3.2.2.swf',
email: false,
share: {
description: 'Video by '+dirName
}
},*/
},
playlist: [
// this first PNG clip works as a splash image
{
url: imagePath,
scaling: true
},
// second clip is a video. when autoPlay is set to false the splash screen will be shown
{
url: moviePath,
autoPlay: false,
// video will be buffered when splash screen is visible
autoBuffering: true
}
]
}).ipad();
};