Example 3.03-1 - Empty response on-demand ad call, delayed (multiple)

Loading the player ...

The configuration for this example is:


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

       'playlist': [
           {
              'file': 'http://streaming.openvideoads.org/shows/bbb-640x360.mp4',
              'title': 'Big Buck Bunny Trailer',
              'image': '../../../dist/images/bbb-thumb.jpg',
              'duration': '10',
              'description': 'An animated short film about a bunny'
           },
           {
              'file': 'http://streaming.openvideoads.org:81/shows/the-black-hole.mp4',
              'title': 'The Black Hole',
              'image': '../../../dist/images/the-black-hole-thumb.png',
              'duration': '11',
              'description': 'A short film about a black hole'
           }
       ],

       width: 360,
       height: 240,

       'controlbar.position':'bottom',

       plugins: {
           "../../../dist/swf/ova-jw.swf": { 
               "delayAdRequestUntilPlay": true,
             
               "ads": {
                   "notice": { "textStyle": "smalltext" },
                   "schedule": [
                       {
                           "position": "pre-roll",
                           "tag": "../../../dist/templates/error-responses/vast1.0/blank-vast-response.xml",
                           "loadOnDemand": true
                       }
                   ]
               },

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