Example 0.06 - Autostart set to true - cancels out the delay

Loading the player ...

The configuration for this example is:


<script type="text/javascript">jwplayer("container").setup({
       flashplayer: "", 

       width: 360,
       height: 240,

       playlist: [
          { 
             file: "http://streaming.openvideoads.org/shows/the-black-hole.mp4",
             duration: 10 
          }
       ],

       autostart: true,

       'controlbar.position':'bottom',

       plugins: {
           "../../../dist/swf/ova-jw.swf": { 
               "delayAdRequestUntilPlay": true,
             
               "ads": {
                   "servers": [
                       {
                           "type": "OpenX",
                           "apiAddress": "http://openx.openvideoads.org/openx/www/delivery/fc.php",
                           "allowAdRepetition": true
                       }
                   ],
                   "notice": { "textStyle": "smalltext" },
                   "schedule": [
                       {
                           "zone": "5",
                           "position": "pre-roll"
                       }
                   ]
               },

               "debug": {
                  "levels": "fatal, config, vast_template, vpaid, http_calls, playlist, api"
               }
           }
       }
});
</script>