I have the scaling set to "fit" because it scales the video up or down preserving its aspect ratio but the metadata has the wrong width for the video so that means scaling preserves the wrong aspect ratio. I have a video that should be 853x480 but in flowplayer it is 720x480. I know you can get the metadata width by writing this
onMetaData: function(clip){
alert(clip.metaData.width);
},
but how do you set it?