memtimintursun / open-video-ads

Automatically exported from code.google.com/p/open-video-ads
0 stars 0 forks source link

Unordered adslots produce invalid results #220

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
If ad slots are ordered as follows:

                "schedule": [
                    {
                        "zone": "18",
                        "position": "post-roll"
                    },
                    {
                        "zone": "33",
                        "position": "bottom",
                        "width": 450,
                        "height": 50,
                        "startTime": "00:00:05",
                        "duration": "15"
                    }
                ],

The overlay won't play. Must be something about being unordered.

Original issue reported on code.google.com by paul.sch...@gmail.com on 26 Apr 2010 at 12:34

GoogleCodeExporter commented 8 years ago
This schedule results in the overlay playing over the second ad slot:

                "schedule": [
                    {
                      "zone": "5",
                      "position": "pre-roll"
                    },
                    {
                      "zone": "30",
                      "startTime": "00:00:01",
                      "duration": 15,
                      "width": 450,
                      "height": 50
                    },
                    {
                      "zone": "5",
                      "position": "pre-roll"
                    },
                    {
                      "zone": "30",
                      "startTime": "00:00:20",
                      "duration": 10,
                      "width": 450,
                      "height": 50
                    }
                ]

Original comment by paul.sch...@gmail.com on 28 Apr 2010 at 10:16