Example 06 - 1 stream with pre, mid and post rolls plus an overlay

1 stream with a pre-roll, an overlay 5 seconds in for 5 seconds, a mid-roll at 10 seconds into the main stream followed by a post-roll at the end = 4 streams

The configuration for this example is:




"" is defined as:


<config>
   <ova.title>
       1 stream with a post-roll
   </ova.title>
   <ova.json>
       {
            "shows": {
              "baseURL": "OVA_HTTP_BASE_URL",
              "streams": [
                   { "file":"OVA_HTTP_SHOW_STREAM_FILE" }
              ]
            },

            "ads": {
              "servers": [
                  {
                    "type": "OpenX",
                    "apiAddress": "OVA_OPENX_API",
                    "allowAdRepetition": true
                  }
              ],
              "schedule": [
                  {
                    "zone": "19",
                    "position": "pre-roll"
                  },
                  {
                    "zone": "19",
                    "position": "mid-roll",
                    "startTime": "00:00:10"
                  },
                  {
                    "zone": "19",
                    "position": "post-roll"
                  },
                  {
                    "zone": "30",
                    "startTime": "00:00:05",
                    "duration": 5,
                    "width": 450,
                    "height": 50
                  }
              ]
            },

            "debug": {
              "levels": "OVA_DEBUG",
              "debugger": "firebug"
            }
       }
   </ova.json>
</config>