I am embeding a JWplayer video onto a facebook wall by Facebook Feed method and I can't set height of a video, funny it may seem but I spent time over it, previously I had no problem with it while working on og:video:height but this time I want a share-functionality.
function fb_post() {
skin = $("#fb-skin").html();
file = $("#fb-file").html();
var obj = {
method: 'feed',
link: $("#fb-link").html(),
picture: $("#fb-image").html(),
width: 420,
height: 32,
source: 'http://xxx/js/jwplayer/player.swf?height=32&width=420&skin='+skin+'&file='+file+'&autostart=true',
name: $("#fb-name").html(),
caption: $("#fb-caption").html(),
description: $("#fb-description").html()
};
function callback(response) {
// callback
}
FB.ui(obj, callback);
}
Resulted height is about 300 px..
Can I know what do I need to change to achieve height of 32 px of embeded video size?