Example 1 - Maintaining 4:3 in a 16:9 Player

This example illustrates how to maintain a 4:3 clip in a 16:9 player.

The configuration for this example is:


flowplayer("a.example", "", {
    playlist: [
       {
           url: "http://www.vtelevision.es/default/2010/04/21/00311271849966888398784/Foto/teixeiro.jpg"
       },
       {
           url: "http://www.vtelevision.es/default/2010/04/21/00311271849966888398784/Video/Crimen Teixeiro.flv"
       }
    ],
    
    clip: {
    	scaling: "fit"
    },
    
    plugins: {
        rtmp: {
            url: "",
            netConnectionUrl: ""
        },

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

        ova: {
            url: "",
            
            "playOnce": true,
            
            "ads": {
              "servers": [
                   {
                      "type": "OpenX",
                      "apiAddress": "",
                      "allowAdRepetition": true,
                      "customProperties": {
                            "target": [ "category=food", "gender=male" ] 
                      }
                   }
              ],
              "schedule": [
                  {
                     "zone": "5",
                     "position": "pre-roll"
                  }
              ]
            },

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