Example 16 - Positioning specific HTML5 enabled regions as "non-overlays"

The configuration for this example is:


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

        ova: {
            url: "",

            "ads": {
                "schedule": [
                    {    
                       "width": 450,
                       "height": 50,
                       "startTime": "00:00:03",
                       "duration": 10,
                       "regions": {
                          "flash": false,
                          "html5": [
                              {
                                 "enable": true,
                                 "region": "bottom",
                                 "overlay": false,
                                 "width": 450,
                                 "height": 50
                              },
                              {
                                 "enable": true,
                                 "region": "bottom-overlay",
                                 "width": 450,
                                 "height": 50
                              }
                          ]
                       },
                       "tag": "../../../dist/templates/overlays/multiple-images-450x50.xml"
                    }
                ]
            },

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