Example 2 - Mid-roll Story with Intervals

The configuration for this example is:


flowplayer("a.example", "", {
    playlist: [
       {
           url: "",
           duration: 20
       }
    ],
    
    plugins: {
        rtmp: {
            url: "",
            netConnectionUrl: ""
        },

        ova: {
            url: "",
            
            "ads": {
              "schedule": [
                  { 
                     "position": "pre-roll",
                     "tag": "http://adserver.adtech.de/?ad...",
                     "oneAdPerRequest": false,
                     "repeat": 3
                  },
                  { 
                     "position": "mid-roll",
                     "startTime": "00:00:10",
                     "tag": "http://adserver.adtech.de/?ad...",
                     "oneAdPerRequest": false,
                     "repeat": 2,
                     "interval": 10
                  },
                  { 
                     "position": "post-roll",
                     "tag": "http://adserver.adtech.de/?ad...",
                     "oneAdPerRequest": false,
                     "repeat": 3
                  }
              ]
            },

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