Example 0.06.01 - Deferring Ad loading (waits for Play to be pressed) - single show - autostart

The configuration for this example is:


flowplayer("a.example", "", {
    playlist: [
    	{
    	    url: "",
    	    duration: 10,
            autoPlay: true
    	}
    ],

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

        ova: {
            url: "",

            "delayAdRequestUntilPlay": true,
            "autoPlay": true,

            "ads": {
                "servers": [
                    {
                      "type": "OpenX",
                      "apiAddress": "",
                    }
                ],
                "schedule": [
                    {
                        "zone": "6",
                        "position": "pre-roll"
                    }
                ]
            },

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