Example 2 - Turning off auto scaling on non-linear VPAID ads

Scalability is determined by the VPAID.scalable API rather than the VAST attributes


The configuration for this example is:


flowplayer("example", "", {
    playlist: [
       {
           url: "",
           duration: 20
       }
    ],

    plugins: {	    
        controls: {
            autoHide: "always"
        },

        openAdStreamer: {
            "url": "",

            "ads": {
                "schedule": [
                    {
                       "region": "auto:bottom",
                       "startTime": "00:00:03",
                       "duration": "recommended:15",
                       "enableScaling": false,
                       "tag": "http://www.adotube.com/kernel/vast/vast.php?omlSource=...description=[A]__amp__videoURL=[B]"
                    }
                ]
            }
            
            "debug": {
                "levels": ""
            }
        }
    }
});