Hello folks.
I also encountered this bug and would like to share my little hack to it. Please edit videojs-html5-video-player-for-wordpress/video-js-wp.php and locate the part
} else {
$autoplay_attribute = "";
$flow_player_autoplay = ',"autoPlay":false';
}
$videojs .= <<<_end_
Edit it to include the extra line I inserted:
} else {
$autoplay_attribute = "";
$flow_player_autoplay = ',"autoPlay":false';
}
$flow_player_scale = ',"scaling":"fit"';
$videojs .= <<<_end_
Now edit the part:
<param name="flashvars" value='config={"playlist":[$flow_player_poster{"url": "$mp4" $flow_player_autoplay $flow_player_preload}]}' />
to appear like:
<param name="flashvars" value='config={"playlist":[$flow_player_poster{"url": "$mp4" $flow_player_autoplay $flow_player_preload $flow_player_scale}]}' />
This allows the video to scale when in full screen. However the poster is not affected and I haven't found out (yet) how to change the background color (which is white).
Hope this helps a lot of people!
Regards,
Nono