Example 1 - Loading a new playlist into the player (triggering OVA to reschedule)

Loading the player ...

The configuration for this example is:


<script type="text/javascript">jwplayer("container").setup({
       flashplayer: OVA_PLAYER_56_3, 
       playlist: [
	       { file: "http://streaming.openvideoads.org:81/shows/the-black-hole.mp4", duration: 10 },
	       { file: "http://streaming.openvideoads.org:81/shows/the-black-hole.mp4", duration: 11 }
       ],
       plugins: {
           "../../../../dist/swf/ova-jw.swf": { 
              "debug": {
                  "levels": "fatal, config, vast_template, vpaid, http_calls, playlist, api"
              },

              "ads": {
                 "playOnce": false,
                 "servers": [
                     {
                        "type": "OpenX",
                        "apiAddress": "http://openx.openvideoads.org/openx/www/delivery/fc.php"
                     }
                 ],
                 "schedule": [
                     {
                        "zone": "5",
                        "position": "pre-roll"
                     }
                 ]
              }
           }
       },
       height: 300,
       width: 450
});
</script>