Example 21 - Using OVA with the secure streaming plugin

The configuration for this example is:


flowplayer("a.example", "", {
    log: { level: 'debug', filter: 'org.flowplayer.securestreaming.*' },
    
    clip: {  
        provider: 'rtmp',
        connectionProvider: 'secure'
    },

    playlist: [ { url: 'Extremists.flv' } ],
    
    plugins: {
        rtmp: {
            url: "",
        },

        secure: { 
            url: "",
            token: escape('#ed%h0#w@1')
        },

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

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