videojs (v3.2.0) always shows a black background when loading video in swf mode. Does anyone know how to change this?
You can add the following swf parameters to the player:
var params = {}; params.bgcolor = "#ffffff"; params.wmode = "transparent";
V.options.flash.params = params;
With wmode = "transparent" you can see a black box in the upper left corner. In IE7 / 8, the window does not disappear when playing a video and is displayed as a black line around the video (for example, a black frame).
Thanks a lot Florian
source share