Flowplayer does not work on firefox

Iam using flowplayer to embed a FLV file on a page. It works fine in IE8, Chrome, and Opera, but firefox refuses to show anything. There is only an empty place where the file should be. Is this a known issue?

Flowplayer Version: 3.1.4 Firefox Version: 3.5.5 Firefox Extensions: Fast Java Launch, RealPlayer Real-Time Recording Plugin.

js code:

flowplayer("flvContent", "flowplayer-3.1.5.swf", "somefile.flv");
+5
source share
1 answer

I found out the problem. In the div into which the file was to be embedded, height and width are not specified, if height and width were added, it also works with firefox.

Early markup:

<div id="flvContent"></div>

Changed markup:

<div id="flvContent" style="width:80%;height:300px;"></div>
+5
source

All Articles