如何将Flow播放器设置为使用视频分辨率自动重新调整大小


How to set Flow player to auto re-size with the video resolution?

我使用带有CMS的Flow Player,我们可以让用户通过登录来添加视频。由于用户可以添加FLV格式和不同分辨率的视频,我很难设置播放器的宽度和高度。。有什么办法可以让它随着视频自动调整大小吗
(它以Fancy Box打开,播放视频)请帮忙。

感谢

/*html*/
<a id="player"  style="display:block;width:/*Your static width*/;height:/*Your static height*/" href="Your video url">Video name</a>
/*script*/
$(document).ready(function(){
        if($('a#player').is(':visible')){ 
            flowplayer('player', '/plugins/flowplayer-3.2.7.swf',{
            });
        }
    });