Example 10 - Hiding a logo during a VPAID mid-roll

Loading the player ...

The configuration for this example is:


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

       'logo.file': "../../../../dist/images/hc-player.png",
       'logo.position': "top-left",
       'logo.hide': false,

       playlist: [
           { file: "http://streaming.openvideoads.org:81/shows/the-black-hole.mp4", duration: 10 }
       ],
       plugins: {
           "../../../../dist/swf/ova-jw.swf": { 
              "debug": {
                 "levels": "fatal, config, vast_template, vpaid, http_calls, playlist, api"
              },

              "player": {
                 "modes": {
                    "linear": {
                       "hideLogo": true
                    }
                 }
              },

              "ads": {
                 "servers": [
                     {
                        "type": "OpenX",
                        "apiAddress": "http://openx.openvideoads.org/openx/www/delivery/fc.php"
                     }
                 ],
                 "schedule": [
                     {
                        "zone": "5",
                        "position": "mid-roll",
                        "startTime": "00:00:05",
                        "tag": "../../../../dist/templates/ad-servers/eyewonder/vpaid-linear-01.xml"
                     }
                 ] 
              }
           }
       },
       height: 300,
       width: 450
});
</script>