Yiinior Extension Does Not Show Video

Hi all,

I installed extension yiinior from http://www.yiiframework.com/extension/yiinior/

and inserted next code into template


	<?php

	$this->widget('ext.Yiinior.Yiinior', array(

		'video'=> $this->app_params['backend_root_url'] . "uploads/cms_items/sample.flv",

		'id' => 'yiinior',

		'width'=>640,

		'height'=>480,

		'autoplay'=>'false',

		'autohide'=>'true',

		'bgcolor'=>'#000'

	));

	?>



But video is not even seen on page.

In source code I see next :


	<script type="text/javascript" src="/local-yii-test.com/WebRoot/testdrive/assets/7bc19e04/swfobject.js"></script> 

		<div id="yiinior"></div>

		<script type="text/javascript">

		//<![CDATA[

	var flashvars = {};

	flashvars.image = "";	

	

	flashvars.movie = "http://localhost/local-yii-test.com/WebRoot/testdrive/uploads/cms_items/sample.flv";

	flashvars.autoplay = "false";			

	flashvars.loop = "false";

	

	flashvars.autohide = "true";

	

	flashvars.fullscreen = "true";

	

	flashvars.color_text = "0xFFFFFF";

	flashvars.color_seekbar = "0x13ABEC";

	flashvars.color_loadingbar = "0x828282";

	flashvars.color_seekbarbg = "0x333333";

	

	flashvars.color_button_out = "0x333333";

	flashvars.color_button_over = "0x000000";

	flashvars.color_button_highlight = "0xffffff";

	

	var params = {};

	params.allowfullscreen = "true";

	params.allowscriptaccess = "always";

	params.bgcolor = "#000";

	

	var attributes = {};

	attributes.align = "middle";

	

	swfobject.embedSWF("/local-yii-test.com/WebRoot/testdrive/local-yii-test.com/WebRoot/testdrive/assets/7bc19e04/player.swf", "yiinior", "640", "480", "9.0.45", "", flashvars, params, attributes);

//]]>

</script>



File in parameter


flashvars.movie = "http://localhost/local-yii-test.com/WebRoot/testdrive/uploads/cms_items/sample.flv";

is valid and it is opened in my FF if to enter this url .

Strange is parameter


	swfobject.embedSWF("/local-yii-test.com/WebRoot/testdrive/local-yii-test.com/WebRoot/testdrive/assets/7bc19e04/player.swf", "yiinior", "640", "480", "9.0.45", "", flashvars, params, attributes);



In source of this extension I see line :


swfobject.embedSWF("'.Yii::app()->request->baseUrl.$this->swfUrl.

For my host


Yii::app()->request->baseUrl = /local-yii-test.com/WebRoot/testdrive

Host in under windows and url of page is http://localhost/local-yii-test.com/WebRoot/testdrive/category/index

Seems that is the point, but how can I to fix it ?

Did somebody used Yiinior ? Maybe to use some other tools for viewing of video ? some free tools which can view different video formats ?