
client is using the following code - can i use jplayer to emulate it?
Here is the code currently being used ( wordpress site)
<div id="mediaplayer"></div>
<script type="text/javascript" src="/wp-content/plugins/player-embeder/customplayer/player-api.js"></script>
<script>
player("mediaplayer").setup({
stretching: 'exactfit',
width: 480,
height: 360,
image: '',
autostart:'true',
controlbar:'bottom',
file: 'http://ceoweekly.com.s3.amazonaws.com/Skin%20Care%20.mov',
provider: 'http',
"plugins": {
"/wp-content/plugins/player-embeder/customplayer/ova-update.swf": {
"autoPlay": true,
"ads": {
"skipAd": {
"enabled": true
},
"playOnce": false,
"companions": {
"regions": [
{ "id":"companion", "width":300, "height":250 }
]
},
"schedule": [
{
"position": "pre-roll",
"tag": "http://g.adspeed.net/ad.php?do=vast&zid=47628&wd=-1&ht=-1&cb=1400176937"
}
]
},
"debug": {
"levels": "fatal,config,vast_template,vpaid,http_calls"
}
}
},
"events": {
onReady : function () {
registerPreBuiltEvent(101);
},
onPlay : function () {
registerPreBuiltEvent(102);
}
},
modes: [
{ type: "flash", src: "/wp-content/plugins/player-embeder/customplayer/Player.swf" },
{ type: "html5" }
]
});
</script>
how can i implement the jwplayer ( in wordpress) to emulate this code?
( pre sale question).
thanks!
ed