Example 13 - Security Exception - JW Playlist with "delayAdRequestUntilPlay"

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",
              duration: 10 
          },
          { 
              file: "http://streaming.openvideoads.org/shows/bbb-640x360.mp4",
              duration: 11 
          }
       ],

       width: 650,
       height: 240,

       controlbar: "bottom",

       plugins: {
           "../../../dist/swf/ova-jw.swf": { 
               "delayAdRequestUntilPlay": true,
               "ads": {
                  "servers": [
                      {
                         "type": "direct",
                         "apiAddress": "http://ads.example.com/this-will-fail.html"
                      }
                  ],

                  "notice": { "textStyle": "smalltext" },
                  "schedule": [
                      {
                         "zone": "5",
                         "position": "pre-roll",
                         "applyToParts": [ 0 ]
                      },
                      {
                         "zone": "5",
                         "position": "post-roll"
                      }
                  ]
               },

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