Example 5.00.01 - Fine grained control bar enabling - stream only

Loading the player ...

The configuration for this example is:


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

       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": {
                       "controls": { 
                          "stream": { 
                             "enableMute": false,
                             "enableVolume": false
                          }
                       }
                    }
                 }
              },

              "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"
                     }
                 ] 
              }
           }
       },
       height: 300,
       width: 450
});
</script>