
HTML5 Background Color
When using the following code, the flash version loads up with the Red background color, but the HTML5 player just stays black. Is there a way I can make this work properly? I've tried several iterations of config now with the same results every time.
<video id="TestVid" src="video.mp4" width="900" height="510" controls="controls"></video>
<script type="text/javascript">
jwplayer('TestVid').setup({
'screencolor': 'FF0000',
'modes': [
{type: 'html5'},
{type: 'flash', src: 'jw5.5/player.swf'}
]
});
</script>