barterz, совершенно верно, старый код плеере нужно удалить (а точнее заменить). У меня это выглядит вот так:
	PHP код:
 
	
		
			
        return  "<!--dle_video_begin:{$decode_url}-->
<embed src=\"engine/classes/flashplayer/flvplayer.swf\" width=\"550\" height=\"400\" allowfullscreen=\"true\" flashvars=\"&file={$url}&backcolor=0x000000&frontcolor=0xFFFFFF&lightcolor=0x000000&screencolor=0x000000&&logo=/logo.png&streamer=lighttpd\"></embed>
<!--dle_video_end-->";
            
        } elseif( $type == "avi" or $type == "divx" ) {
            
            return "<!--dle_video_begin:{$decode_url}--><object classid=\"clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616\" width=\"{$this->video_config['width']}\" height=\"{$this->video_config['height']}\" codebase=\"http://go.divx.com/plugin/DivXBrowserPlugin.cab\">
                <param name=\"custommode\" value=\"none\" />
                <param name=\"mode\" value=\"zero\" />
                <param name=\"autoPlay\" value=\"{$this->video_config['play']}\" />
                <param name=\"src\" value=\"{$url}\" />
                <param name=\"previewImage\" value=\"{$option[1]}\" />
                <embed type=\"video/divx\" src=\"{$url}\" custommode=\"none\" width=\"{$this->video_config['width']}\" height=\"{$this->video_config['height']}\" mode=\"zero\"  autoPlay=\"{$this->video_config['play']}\" previewImage=\"{$option[1]}\" pluginspage=\"http://go.divx.com/plugin/download/\">
                </embed>
                </object><!--dle_video_end-->";
        
        } else {
            
            return "<!--dle_video_begin:{$url}--><object id=\"mediaPlayer\" width=\"{$this->video_config['width']}\" height=\"{$this->video_config['height']}\" classid=\"CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6\" standby=\"Loading Microsoft Windows Media Player components...\" type=\"application/x-oleobject\">
                <param name=\"url\" VALUE=\"{$url}\" />
                <param name=\"autoStart\" VALUE=\"{$this->video_config['play']}\" />
                <param name=\"showControls\" VALUE=\"true\" />
                <param name=\"TransparentatStart\" VALUE=\"false\" />
                <param name=\"AnimationatStart\" VALUE=\"true\" />
                <param name=\"StretchToFit\" VALUE=\"true\" />
                <embed pluginspage=\"http://www.microsoft.com/Windows/Downloads/Contents/MediaPlayer/\" src=\"{$url}\" width=\"{$this->video_config['width']}\" height=\"{$this->video_config['height']}\" type=\"application/x-mplayer2\" autorewind=\"1\" showstatusbar=\"1\" showcontrols=\"1\" autostart=\"{$this->video_config['play']}\" allowchangedisplaysize=\"1\" volume=\"70\" stretchtofit=\"1\"></embed>
                </object><!--dle_video_end-->";
        }
    
    }