Example 8 - Turning off the dock during ad playback - Using the Captions plugin

Loading the player ...

The configuration for this example is:


<script type="text/javascript">jwplayer("container").setup({
       flashplayer: "", 
       file: "http://streaming.openvideoads.org:81/shows/the-black-hole.mp4",
       image: "http://static.openvideoads.org/shows/the-black-hole-thumbnail.png",
       duration: 10,
       'controlbar.position': 'bottom',
       plugins: {
           "../../../../dist/swf/ova-jw.swf": { 
              "debug": {
                  "levels": "fatal, config, vast_template, vpaid, http_calls, playlist, api"
              },

              "player": {
                 "controls": {
                     "hideDock": true
                 }
              },
              
              "ads": {
                 "servers": [
                     {
                        "type": "OpenX",
                        "apiAddress": "http://openx.openvideoads.org/openx/www/delivery/fc.php"
                     }
                 ],
                 "schedule": [
                     {
                        "zone": "5",
                        "position": "pre-roll"
                     },
                     {
                        "zone": "5",
                        "position": "post-roll"
                     }
                 ]
              }
           },
           "captions-2": {
              "file": "http://static.openvideoads.org/downloads/captions.xml"
           }
       },
       height: 300,
       width: 450
});
</script>