Generic OSMF plugin - newbie question

Hi,

I am a Kaltura newbie. I have compiled the KDP using FB4.6 and was able to launch the player from the webpage ci_html-template.html (the rest of the html pages inside the KDP3/bin-debug/ folder did not work - I don’t know why. The player just did not load.). My question is about loading a generic OSMF plug-in on the KDP player. I tried the “flashvars” method mentioned here:

http://knowledge.kaltura.com/adding-genericosmf-plugin-kdp

but it did not work. Here is the modified flashvars in ci_html-template.html:

		"flashvars","sourceType=entryId"+
					"&host=www.kaltura.com"+
					"&autoPlay=false"+
					"&cdnHost=akmi.kaltura.com"+
					"&entryId=1_sjfe57ui"+  // 30 sec movie
					"&clientTag=cache_st:20000000"+
					"&playlistAPI.kpl0Name=demo playlist"+
					"&playlistAPI.kpl0Url=http%3A%2F%2Fwww.kaltura.com%2Findex.php%2Fpartnerservices2%2Fexecuteplaylist%3Fuid%3D%26partner_id%3D321011%26subp_id%3D32101100%26format%3D8%26ks%3D%7Bks%7D%26playlist_id%3D1_wanp0kwz"+
					"&debugMode=false"+
					"&fileSystemMode=true"+
					"&uiConfId=48503"+
					"&widgetId=_321011"+
					"&partnerId=321011"+
					"&subpId=32101100"+
					"&pluginDomain="+
					"&kml=local"+
					"&externalInterfaceDisabled=false"+
					"&referer=http://www.kaltura.com/demo/"+
					"&playerBgColor=0x010101"+
                                            "&genericOSMF.plugin=true"+
                                            "&genericOSMF.relativeTo=statistics"+
                                            "&genericOSMF.position=after"+
                                            "&genericOSMF.width=0"+
                                            "&genericOSMF.height=0"+
                                            "&genericOSMF.loadingPolicy=preInitialize"+
                                            "&genericOSMF.asyncInit=true"+
                                            "&genericOSMF.pluginURL=http://127.0.0.1/plugins/VideoQoSPlugin.swf", 

The “VideoQoSPlugin.swf” above is the one that is found in the OSMF/samples directory. The problem with the above is, when I open the webpage in firefox, it just freezes and I will have to kill the browser. If I remove the genericOSMF variables, then the player loads and plays fine. Is there anything that I have missed? Is there a way to debug/figure out what is happening? Thanks in advance.