Example 2.00.01 - Hiding the control bar during linear ad playback - ad streams

The configuration for this example is:


flowplayer("a.example", "", {
    playlist: [
    	{
    		url: "",
    		duration: 30
    	}
    ],
    
    plugins: {
        controls: {
            autoHide: "never"
        },

        ova: {
              url: "",

              "player": {
                 "modes": {
                    "linear": {
                       "controls": { 
                           "stream": { "visible": false }
                       }
                    }
                 }
              },
              
              "ads": {
                 "servers": [
                     {
                        "type": "OpenX",
                        "apiAddress": ""
                     }
                 ],
                 "schedule": [
                     {
                        "zone": "5",
                        "position": "pre-roll"
                     },
                     {
                        "zone": "5",
                        "position": "post-roll"
                     }
                 ]
              },

              "debug": {
                 "levels": ""
              }
        }
    }
});