0
工作按照documentation,當aspectratio
被設置,height
被忽略,所以我做JWPlayer:縱橫比不帶數字寬度
jwplayer("videoEx").setup({
"file": "myvideourl",
"image":"/images/slideshowbg.png",
"width":640,
"aspectratio":"16:9"
});
但它不能正常工作,視頻容器的大小會640 * 270(我猜270是默認高度),而視頻播放器的尺寸是480 * 270,在視頻播放器的兩側形成兩個黑條。
我要做
jwplayer("videoEx").setup({
"file": "myvideourl",
"image":"/images/slideshowbg.png",
"width":"53%",
"aspectratio":"16:9"
});
獲得適當的視頻播放器,其中,容器是相同的大小。
這是打算?