Example 4 - Linear ad streams and the Flow Plugin

Loading the player ...

The configuration for this example is:


<script type="text/javascript">jwplayer("container").setup({
       flashplayer: "", 
       playlistfile: "http://content.bitsontherun.com/jwp/482jsTAr.xml",
       'controlbar.position': 'bottom',
       plugins: {
           "../../../../dist/swf/ova-jw.swf": { 
              "allowPlaylistControl": true,

              "debug": {
                  "levels": "fatal, config, vast_template, vpaid, http_calls, playlist, api"
              },

              "ads": {
                 "enforceLinearAdsOnPlaylistSelection": true,
                 "servers": [
                     {
                        "type": "OpenX",
                        "apiAddress": "http://openx.openvideoads.org/openx/www/delivery/fc.php"
                     }
                 ],
                 "schedule": [
                     {
                        "zone": "5",
                        "position": "pre-roll"
                     }
                 ]
              }
           },
           "flow-2": {
               'position': 'bottom',
               'showtext': 'false',
               'coverheight': '100',
               'size': '100',
               'dockicon': false,
               'controlbaricon': true,
               'onplaying': 'show',
               'onidle': 'show',
               'onpaused': 'show',
               'oncompleted': 'show'
           }           
       },
       height: 300,
       width: 450
});
</script>