Example 6.00.03 - Disable all controls - VPAID ads

The configuration for this example is:


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

        ova: {
              url: "",
            
              "player": {
                 "modes": {
                    "linear": {
                       "controls": { 
                           "vpaid": { "enable": false }
                       }
                    }
                 }
              },
              
              "ads": {
                 "schedule": [
                     {
                        "position": "pre-roll",
                        "tag": ""
                     }
                 ]
              },

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