Example 1 - Using Flowplayer Common Clip and Playlist settings

This example illustrates how general clip properties and the Flowplayer playlist config option can be used. In this case, the base URL for all show streams is defined at the Flowplayer Clip level and the 2 show streams are defined in an RSS playlist.

The configuration for this example is:


flowplayer("a.example", "", {
    clip: { 
        baseUrl: "http://blip.tv/file/get/" 
    },  

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

        ova: {
            url: "",

            "debug": {
                "levels": ""
            },

            "ads": {
                "pauseOnClickThrough": true,
                "servers": [
                    {
                      "type": "OpenX",
                      "apiAddress": ""
                    }
                ],
                "schedule": [
                    {
                      "zone": "5",
                      "position": "post-roll"
                    }
                ]
            }
        }
    }    
});