with this you archive to hide the video link.

Firstly the video link in the search code is like this.
Code:
<script type="text/javascript">
so.addVariable("file","http://video.bizhat.com/flvideo/12116304601100217387.flv");
</script>
After will be like this.
Code:
<script type="text/javascript">
so.addVariable("file","../../flvideo/12116304601100217387.flv");
</script>
How to do it :?:
open file "\include\classes\class.video_player.php

Find this
Code:
function vshare_player(){
		global $config;
		if($this->server_id == 0){
			$file = $config['baseurl'] ."/flvideo/" .$this->flvideo;
Replace with:
Code:
function vshare_player(){
		global $config;
		if($this->server_id == 0){
			$file = "../../flvideo/" .$this->flvideo;
that's all :wink: