nginadofficial / open-video-ads

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

Why has the clip baseURL stopped working with RSS playlists? #196

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Why does this config not work:

flowplayer("a.example", "../../dist/flowplayer-3.1.5.swf", {
    clip: { 
        baseUrl: 'http://blip.tv/file/get' 
    },  

    playlist: '../../tests/test-templates/playlist.rss',  

    plugins: {      
        controls: {
            autoHide: "always"
        },

        openAdStreamer: {
            url: OVA_OAS_Url_2,

            "debug": {
                "debugger": "firebug",
                "levels": OVA_OAS_Debug
            },

            "ads": {
                "pauseOnClickThrough": true,
                "servers": [
                    {
                      "type": "OpenX",
                      "apiAddress": "http://openx.openvideoads.org/openx/www/delivery/fc.php"
                    }
                ],
                "schedule": [
                    {
                      "zone": "5",
                      "position": "pre-roll"
                    }
                ]
            }
        }
    }
});

Basically the baseURL setting is not being read in - the URL has to be coded 
into the RSS file to 
work.

See the modified JS playlist examples to test this.

Original issue reported on code.google.com by paul.sch...@gmail.com on 22 Mar 2010 at 7:22

GoogleCodeExporter commented 8 years ago
Looking into this for 0.5.0 RC2 release...

Original comment by paul.sch...@gmail.com on 20 Apr 2010 at 10:13

GoogleCodeExporter commented 8 years ago
Fixed in 0.5.0 RC2 - not standard flowplayer functionality though - had to put 
a check in - if it's a HTTP stream 
and a playlist item doesn't have the baseURL in the file url, it's now added.

Original comment by paul.sch...@gmail.com on 22 Apr 2010 at 10:03