Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

flowplayer not working on firefox

Tags:

Iam using flowplayer to embed an flv file in a page. It works just fine in IE8,Chrome and Opera, but firefox refuses to show anything. There is just blank space where the file is supposed to be. Is this a known issue ?

Flowplayer version : 3.1.4 Firefox version : 3.5.5 Firefox extensions : Java Quick starter,RealPlayer Browser record plugin.

js code:

flowplayer("flvContent", "flowplayer-3.1.5.swf", "somefile.flv");
like image 931
krishna Avatar asked Dec 09 '09 11:12

krishna


1 Answers

Figured out the problem. The div in which the file was to be embedded did not have height and width specified earlier, when the height and width were added it's works on firefox as well.

Earlier markup:

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

Modified markup:

<div id="flvContent" style="width:80%;height:300px;"></div>
like image 101
krishna Avatar answered Oct 12 '22 05:10

krishna